diff --git a/C++11-Syntax-and-Feature.xhtml b/C++11-Syntax-and-Feature.xhtml index 342b32c..c9d853f 100644 --- a/C++11-Syntax-and-Feature.xhtml +++ b/C++11-Syntax-and-Feature.xhtml @@ -756,7 +756,7 @@ Nを16進数の一文字とすると、\uNNNNは、UCSにおけるコードポ
 R"(\u3042)" ; // ユニバーサル文字名ではなく、文字通りに解釈されることに注意
-u8"\u00E3\u0081\u0082" ; // OK、u8"あ"と同じ
+u8"\u3042" ; // OK、u8"あ"と同じ
 
 u"\ud842\udfb7" ; // エラー、サロゲートコードポイントを明示的に使うことはできない
 u"\U00020bb7" ; // OK、u"𠮷"と同じ