C:
char c = '\u8533';
printf("%c\n", c); // Output: 蔳
JavaScript:
const char = '\u8533';
console.log(char); // Output: 蔳
Java:
char c = '\u8533';
System.out.println(c); // Output: 蔳
JSON:
{"text": "\u8533"} // Value: 蔳
Python:
char = '\u8533'
print(char) # Output: 蔳
Perl:
my $char = "\x{8533}";
print $char; # Output: 蔳
PHP:
$char = "\x{8533}";
echo $char; // Output: 蔳
Ruby:
char = "\u{8533}"
puts char # Output: 蔳
Rust:
let c = '\u{8533}';
println!("{}", c); // Output: 蔳
Go:
char := '\u8533'
fmt.Printf("%c\n", char) // Output: 蔳
CSS:
/* CSS content property */
.element::before {
content: "\008533"; /* 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%B3
MD5:
bcd39c72db0ca23c614f47ed8449f000
SHA1:
0d7057aa11a32ed325f09a8316395a19e10975f1
Base64:
6JSz