Issue #26525: Change ord example from nu to more easily recognized Euro sign.
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index ef4176a..0491a3b 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1079,8 +1079,8 @@
Given a string representing one Unicode character, return an integer
representing the Unicode code point of that character. For example,
- ``ord('a')`` returns the integer ``97`` and ``ord('ν')`` returns ``957``.
- This is the inverse of :func:`chr`.
+ ``ord('a')`` returns the integer ``97`` and ``ord('€')`` (Euro sign)
+ returns ``8364``. This is the inverse of :func:`chr`.
.. function:: pow(x, y[, z])