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