C:
char c = '\u81D4';
printf("%c\n", c); // Output: 臔
JavaScript:
const char = '\u81D4';
console.log(char); // Output: 臔
Java:
char c = '\u81D4';
System.out.println(c); // Output: 臔
JSON:
{"text": "\u81D4"} // Value: 臔
Python:
char = '\u81D4'
print(char) # Output: 臔
Perl:
my $char = "\x{81D4}";
print $char; # Output: 臔
PHP:
$char = "\x{81D4}";
echo $char; // Output: 臔
Ruby:
char = "\u{81D4}"
puts char # Output: 臔
Rust:
let c = '\u{81D4}';
println!("{}", c); // Output: 臔
Go:
char := '\u81D4'
fmt.Printf("%c\n", char) // Output: 臔
CSS:
/* CSS content property */
.element::before {
content: "\0081D4"; /* 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=%E8%87%94
MD5:
e9780dd0c77eb39a5e021f7c3d238917
SHA1:
b49f760ccd1f002c784353222dae3e39d58375c2
Base64:
6IeU