C:
char c = '\u7687';
printf("%c\n", c); // Output: 皇
JavaScript:
const char = '\u7687';
console.log(char); // Output: 皇
Java:
char c = '\u7687';
System.out.println(c); // Output: 皇
JSON:
{"text": "\u7687"} // Value: 皇
Python:
char = '\u7687'
print(char) # Output: 皇
Perl:
my $char = "\x{7687}";
print $char; # Output: 皇
PHP:
$char = "\x{7687}";
echo $char; // Output: 皇
Ruby:
char = "\u{7687}"
puts char # Output: 皇
Rust:
let c = '\u{7687}';
println!("{}", c); // Output: 皇
Go:
char := '\u7687'
fmt.Printf("%c\n", char) // Output: 皇
CSS:
/* CSS content property */
.element::before {
content: "\007687"; /* 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=%E7%9A%87
MD5:
01a511157c75521498ceb7767cf3d9bc
SHA1:
bb9589dafab6807817e89dcf5d1f24e67cdf2dcc
Base64:
55qH