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