C:
char c = '\u9933';
printf("%c\n", c); // Output: 餳
JavaScript:
const char = '\u9933';
console.log(char); // Output: 餳
Java:
char c = '\u9933';
System.out.println(c); // Output: 餳
JSON:
{"text": "\u9933"} // Value: 餳
Python:
char = '\u9933'
print(char) # Output: 餳
Perl:
my $char = "\x{9933}";
print $char; # Output: 餳
PHP:
$char = "\x{9933}";
echo $char; // Output: 餳
Ruby:
char = "\u{9933}"
puts char # Output: 餳
Rust:
let c = '\u{9933}';
println!("{}", c); // Output: 餳
Go:
char := '\u9933'
fmt.Printf("%c\n", char) // Output: 餳
CSS:
/* CSS content property */
.element::before {
content: "\009933"; /* 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%A4%B3
MD5:
19cd349aa27eba6b7ff57eb71ca59ca5
SHA1:
85db75ac799090ad4e4d53edfd22c6f30ed33463
Base64:
6aSz