C:
char c = '\u9144';
printf("%c\n", c); // Output: 酄
JavaScript:
const char = '\u9144';
console.log(char); // Output: 酄
Java:
char c = '\u9144';
System.out.println(c); // Output: 酄
JSON:
{"text": "\u9144"} // Value: 酄
Python:
char = '\u9144'
print(char) # Output: 酄
Perl:
my $char = "\x{9144}";
print $char; # Output: 酄
PHP:
$char = "\x{9144}";
echo $char; // Output: 酄
Ruby:
char = "\u{9144}"
puts char # Output: 酄
Rust:
let c = '\u{9144}';
println!("{}", c); // Output: 酄
Go:
char := '\u9144'
fmt.Printf("%c\n", char) // Output: 酄
CSS:
/* CSS content property */
.element::before {
content: "\009144"; /* 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%84
MD5:
888ae8a1d503159fc4558dfa408ee7c7
SHA1:
82922e4ed4b45683f036b1e0e5c50e2ee2fab9f1
Base64:
6YWE