C:
char c = '\u8522';
printf("%c\n", c); // Output: 蔢
JavaScript:
const char = '\u8522';
console.log(char); // Output: 蔢
Java:
char c = '\u8522';
System.out.println(c); // Output: 蔢
JSON:
{"text": "\u8522"} // Value: 蔢
Python:
char = '\u8522'
print(char) # Output: 蔢
Perl:
my $char = "\x{8522}";
print $char; # Output: 蔢
PHP:
$char = "\x{8522}";
echo $char; // Output: 蔢
Ruby:
char = "\u{8522}"
puts char # Output: 蔢
Rust:
let c = '\u{8522}';
println!("{}", c); // Output: 蔢
Go:
char := '\u8522'
fmt.Printf("%c\n", char) // Output: 蔢
CSS:
/* CSS content property */
.element::before {
content: "\008522"; /* 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%94%A2
MD5:
1c91cc9fe4d411e487c410dd54b0f0b7
SHA1:
046e13a1199ff0b5d836662c0f38a87cc301a096
Base64:
6JSi