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