New GitHub issue #119718 from gvjahnavi23:<br>

<hr>

<pre>
# Bug report

### Bug description:

isascii() method giving false for emojis but ord() function to find ascii values is giving ascii values. Update isascii() with new ascii list too
```
txt = "🤗"
x = txt.isascii()
y = ord(txt)
print(f"{txt} is ascii:{x}\n The ascii value is {y}")
```
**output**
🤗 is ascii:False
 The ascii value is 129303

### CPython versions tested on:

3.8, 3.11

### Operating systems tested on:

Windows
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/119718">View on GitHub</a>
<p>Labels: type-bug</p>
<p>Assignee: </p>