2a67b3
diff --git a/libs/units/example/autoprefixes.cpp b/libs/units/example/autoprefixes.cpp
2a67b3
index 8b2bc43..d04f2fe 100644
2a67b3
--- a/libs/units/example/autoprefixes.cpp
2a67b3
+++ b/libs/units/example/autoprefixes.cpp
2a67b3
@@ -67,7 +67,7 @@ struct thing_base_unit : boost::units::base_unit
2a67b3
 struct euro_base_unit : boost::units::base_unit<euro_base_unit, boost::units::dimensionless_type, 5>
2a67b3
 {
2a67b3
   static const char* name() { return("EUR"); }
2a67b3
-  static const char* symbol() { return("€"); }
2a67b3
+  static const char* symbol() { return("€"); }
2a67b3
 };
2a67b3
 
2a67b3
 int main()
2a67b3
@@ -140,7 +140,7 @@ int main()
2a67b3
 
2a67b3
   quantity<euro_base_unit::unit_type> ce = 2048. * euro_base_unit::unit_type();
2a67b3
   cout << name_format << engineering_prefix << ce << endl;  // 2.048 kiloEUR
2a67b3
-  cout << symbol_format << engineering_prefix << ce << endl;  // 2.048 k€
2a67b3
+  cout << symbol_format << engineering_prefix << ce << endl;  // 2.048 k€
2a67b3
 
2a67b3
 
2a67b3
     return 0;