C:
char c = '\u9844';
printf("%c\n", c); // Output: 顄
JavaScript:
const char = '\u9844';
console.log(char); // Output: 顄
Java:
char c = '\u9844';
System.out.println(c); // Output: 顄
JSON:
{"text": "\u9844"} // Value: 顄
Python:
char = '\u9844'
print(char) # Output: 顄
Perl:
my $char = "\x{9844}";
print $char; # Output: 顄
PHP:
$char = "\x{9844}";
echo $char; // Output: 顄
Ruby:
char = "\u{9844}"
puts char # Output: 顄
Rust:
let c = '\u{9844}';
println!("{}", c); // Output: 顄
Go:
char := '\u9844'
fmt.Printf("%c\n", char) // Output: 顄
CSS:
/* CSS content property */
.element::before {
content: "\009844"; /* 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%A1%84
MD5:
b76a7cd12275fa955c20a4af3d057296
SHA1:
33a5e7c507f91cd683538f34ad819794595fc90c
Base64:
6aGE