C:
char c = '\u8A60';
printf("%c\n", c); // Output: 詠
JavaScript:
const char = '\u8A60';
console.log(char); // Output: 詠
Java:
char c = '\u8A60';
System.out.println(c); // Output: 詠
JSON:
{"text": "\u8A60"} // Value: 詠
Python:
char = '\u8A60'
print(char) # Output: 詠
Perl:
my $char = "\x{8A60}";
print $char; # Output: 詠
PHP:
$char = "\x{8A60}";
echo $char; // Output: 詠
Ruby:
char = "\u{8A60}"
puts char # Output: 詠
Rust:
let c = '\u{8A60}';
println!("{}", c); // Output: 詠
Go:
char := '\u8A60'
fmt.Printf("%c\n", char) // Output: 詠
CSS:
/* CSS content property */
.element::before {
content: "\008A60"; /* 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%A0
MD5:
ec53311f2ef3bdd891a2f2af8d450e68
SHA1:
3b0e2189a6dbdd38e9cca3cc67c3e60779271534
Base64:
6Kmg