C:
char c = '\u9A8F';
printf("%c\n", c); // Output: 骏
JavaScript:
const char = '\u9A8F';
console.log(char); // Output: 骏
Java:
char c = '\u9A8F';
System.out.println(c); // Output: 骏
JSON:
{"text": "\u9A8F"} // Value: 骏
Python:
char = '\u9A8F'
print(char) # Output: 骏
Perl:
my $char = "\x{9A8F}";
print $char; # Output: 骏
PHP:
$char = "\x{9A8F}";
echo $char; // Output: 骏
Ruby:
char = "\u{9A8F}"
puts char # Output: 骏
Rust:
let c = '\u{9A8F}';
println!("{}", c); // Output: 骏
Go:
char := '\u9A8F'
fmt.Printf("%c\n", char) // Output: 骏
CSS:
/* CSS content property */
.element::before {
content: "\009A8F"; /* 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=%E9%AA%8F
MD5:
e0a1c76cc36915cfb65d8ed771f4ab88
SHA1:
0d3bc35afe9816d748556f453c91b14e6dfbe6e0
Base64:
6aqP