C:
char c = '\u9932';
printf("%c\n", c); // Output: 餲
JavaScript:
const char = '\u9932';
console.log(char); // Output: 餲
Java:
char c = '\u9932';
System.out.println(c); // Output: 餲
JSON:
{"text": "\u9932"} // Value: 餲
Python:
char = '\u9932'
print(char) # Output: 餲
Perl:
my $char = "\x{9932}";
print $char; # Output: 餲
PHP:
$char = "\x{9932}";
echo $char; // Output: 餲
Ruby:
char = "\u{9932}"
puts char # Output: 餲
Rust:
let c = '\u{9932}';
println!("{}", c); // Output: 餲
Go:
char := '\u9932'
fmt.Printf("%c\n", char) // Output: 餲
CSS:
/* CSS content property */
.element::before {
content: "\009932"; /* 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%B2
MD5:
d9ae643783354667027ffcbbc203e3f4
SHA1:
d2c7e7521fbfe6864eda327d628f2bb985e96498
Base64:
6aSy