|
96 | 96 | * <i>NegativePattern:</i> |
97 | 97 | * <i>Prefix<sub>opt</sub></i> <i>Number</i> <i>Suffix<sub>opt</sub></i> |
98 | 98 | * <i>Prefix:</i> |
99 | | - * any Unicode characters except \uFFFE, \uFFFF, and special characters |
| 99 | + * any Unicode characters except {@code U+FFFE}, {@code U+FFFF}, and special characters |
100 | 100 | * <i>Suffix:</i> |
101 | | - * any Unicode characters except \uFFFE, \uFFFF, and special characters |
| 101 | + * any Unicode characters except {@code U+FFFE}, {@code U+FFFF}, and special characters |
102 | 102 | * <i>Number:</i> |
103 | 103 | * <i>Integer</i> <i>Exponent<sub>opt</sub></i> |
104 | 104 | * <i>Integer</i> . <i>Fraction</i> <i>Exponent<sub>opt</sub></i> |
|
221 | 221 | * <td>Yes |
222 | 222 | * <td>Multiply by 100 and show as percentage |
223 | 223 | * <tr style="vertical-align:top"> |
224 | | - * <th scope="row">{@code \u2030} |
| 224 | + * <th scope="row">{@code U+2030} |
225 | 225 | * <td>Prefix or suffix |
226 | 226 | * <td>Yes |
227 | 227 | * <td>Multiply by 1000 and show as per mille value |
228 | 228 | * <tr style="vertical-align: top"> |
229 | | - * <th scope="row">{@code ¤} ({@code \u00A4}) |
| 229 | + * <th scope="row">¤ ({@code U+00A4}) |
230 | 230 | * <td>Prefix or suffix |
231 | 231 | * <td>No |
232 | 232 | * <td>Currency sign, replaced by currency symbol. If |
|
309 | 309 | * <h4>Special Values</h4> |
310 | 310 | * |
311 | 311 | * <p>{@code NaN} is formatted as a string, which typically has a single character |
312 | | - * {@code \uFFFD}. This string is determined by the |
| 312 | + * {@code U+FFFD}. This string is determined by the |
313 | 313 | * {@code DecimalFormatSymbols} object. This is the only value for which |
314 | 314 | * the prefixes and suffixes are not used. |
315 | 315 | * |
316 | 316 | * <p>Infinity is formatted as a string, which typically has a single character |
317 | | - * {@code \u221E}, with the positive or negative prefixes and suffixes |
| 317 | + * {@code U+221E}, with the positive or negative prefixes and suffixes |
318 | 318 | * applied. The infinity string is determined by the |
319 | 319 | * {@code DecimalFormatSymbols} object. |
320 | 320 | * |
@@ -2735,7 +2735,7 @@ public int getMultiplier () { |
2735 | 2735 | * For a percent format, set the multiplier to 100 and the suffixes to |
2736 | 2736 | * have '%' (for Arabic, use the Arabic percent sign). |
2737 | 2737 | * For a per mille format, set the multiplier to 1000 and the suffixes to |
2738 | | - * have '\u2030'. |
| 2738 | + * have '{@code U+2030}'. |
2739 | 2739 | * |
2740 | 2740 | * <P>Example: with multiplier 100, 1.23 is formatted as "123", and |
2741 | 2741 | * "123" is parsed into 1.23. |
|
0 commit comments