C:
char c = '\u8498';
printf("%c\n", c); // Output: 蒘
JavaScript:
const char = '\u8498';
console.log(char); // Output: 蒘
Java:
char c = '\u8498';
System.out.println(c); // Output: 蒘
JSON:
{"text": "\u8498"} // Value: 蒘
Python:
char = '\u8498'
print(char) # Output: 蒘
Perl:
my $char = "\x{8498}";
print $char; # Output: 蒘
PHP:
$char = "\x{8498}";
echo $char; // Output: 蒘
Ruby:
char = "\u{8498}"
puts char # Output: 蒘
Rust:
let c = '\u{8498}';
println!("{}", c); // Output: 蒘
Go:
char := '\u8498'
fmt.Printf("%c\n", char) // Output: 蒘
CSS:
/* CSS content property */
.element::before {
content: "\008498"; /* 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%92%98
MD5:
d9550a1966c178e95ab97035e7e1dfd4
SHA1:
06a3766b832015cd9f9938e0c4611650c50fe6cc
Base64:
6JKY