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