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