C:
char c = '\u8A71';
printf("%c\n", c); // Output: 話
JavaScript:
const char = '\u8A71';
console.log(char); // Output: 話
Java:
char c = '\u8A71';
System.out.println(c); // Output: 話
JSON:
{"text": "\u8A71"} // Value: 話
Python:
char = '\u8A71'
print(char) # Output: 話
Perl:
my $char = "\x{8A71}";
print $char; # Output: 話
PHP:
$char = "\x{8A71}";
echo $char; // Output: 話
Ruby:
char = "\u{8A71}"
puts char # Output: 話
Rust:
let c = '\u{8A71}';
println!("{}", c); // Output: 話
Go:
char := '\u8A71'
fmt.Printf("%c\n", char) // Output: 話
CSS:
/* CSS content property */
.element::before {
content: "\008A71"; /* Display: 話 */
}
HTML Decimal:
<p>HTML decimal: 話</p> <!-- Display: 話 -->
HTML Hexadecimal:
<p>HTML hex: 話</p> <!-- Display: 話 -->
URL Encoding:
// 話 URL encoding
https://unicodefinder.com/search.php?query=%E8%A9%B1
MD5:
80ecea039c8e2a31fc264616988e6285
SHA1:
2f78e3a989f0d8fd18cfd632fefc76b92a8ee08c
Base64:
6Kmx