C:
char c = '\u5098';
printf("%c\n", c); // Output: 傘
JavaScript:
const char = '\u5098';
console.log(char); // Output: 傘
Java:
char c = '\u5098';
System.out.println(c); // Output: 傘
JSON:
{"text": "\u5098"} // Value: 傘
Python:
char = '\u5098'
print(char) # Output: 傘
Perl:
my $char = "\x{5098}";
print $char; # Output: 傘
PHP:
$char = "\x{5098}";
echo $char; // Output: 傘
Ruby:
char = "\u{5098}"
puts char # Output: 傘
Rust:
let c = '\u{5098}';
println!("{}", c); // Output: 傘
Go:
char := '\u5098'
fmt.Printf("%c\n", char) // Output: 傘
CSS:
/* CSS content property */
.element::before {
content: "\005098"; /* 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%82%98
MD5:
2cca6389e49522f267c8f96f0f57c522
SHA1:
3898a45567bc10a11cc5a1003a1d916437da9631
Base64:
5YKY