C:
char c = '\u9141';
printf("%c\n", c); // Output: 酁
JavaScript:
const char = '\u9141';
console.log(char); // Output: 酁
Java:
char c = '\u9141';
System.out.println(c); // Output: 酁
JSON:
{"text": "\u9141"} // Value: 酁
Python:
char = '\u9141'
print(char) # Output: 酁
Perl:
my $char = "\x{9141}";
print $char; # Output: 酁
PHP:
$char = "\x{9141}";
echo $char; // Output: 酁
Ruby:
char = "\u{9141}"
puts char # Output: 酁
Rust:
let c = '\u{9141}';
println!("{}", c); // Output: 酁
Go:
char := '\u9141'
fmt.Printf("%c\n", char) // Output: 酁
CSS:
/* CSS content property */
.element::before {
content: "\009141"; /* 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%85%81
MD5:
35148f0af7c3a19be2a4f7bf1251b12d
SHA1:
ecc24939af7d69f676dade4717a478885e9379d9
Base64:
6YWB