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