<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># -*- coding: utf-8 -*-
"""
Demo of unicode support in text and labels.
"""
from __future__ import unicode_literals

import matplotlib.pyplot as plt


plt.title('DÃ©veloppÃ©s et fabriquÃ©s')
plt.xlabel("rÃ©activitÃ© nous permettent d'Ãªtre sÃ©lectionnÃ©s et adoptÃ©s")
plt.ylabel('AndrÃ© was here!')
plt.text(0.2, 0.8, 'Institut fÃ¼r FestkÃ¶rperphysik', rotation=45)
plt.text(0.4, 0.2, 'AVA (check kerning)')

plt.show()
</pre></body></html>