C:
char c = '\u5191';
printf("%c\n", c); // Output: 冑
JavaScript:
const char = '\u5191';
console.log(char); // Output: 冑
Java:
char c = '\u5191';
System.out.println(c); // Output: 冑
JSON:
{"text": "\u5191"} // Value: 冑
Python:
char = '\u5191'
print(char) # Output: 冑
Perl:
my $char = "\x{5191}";
print $char; # Output: 冑
PHP:
$char = "\x{5191}";
echo $char; // Output: 冑
Ruby:
char = "\u{5191}"
puts char # Output: 冑
Rust:
let c = '\u{5191}';
println!("{}", c); // Output: 冑
Go:
char := '\u5191'
fmt.Printf("%c\n", char) // Output: 冑
CSS:
/* CSS content property */
.element::before {
content: "\005191"; /* 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=%E5%86%91
MD5:
66d0caaff799bc0444e3e6065307a396
SHA1:
4ea0ba5528e6035fd42bed1d7c847f645935a556
Base64:
5YaR