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