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