C:
char c = '\u5602';
printf("%c\n", c); // Output: 嘂
JavaScript:
const char = '\u5602';
console.log(char); // Output: 嘂
Java:
char c = '\u5602';
System.out.println(c); // Output: 嘂
JSON:
{"text": "\u5602"} // Value: 嘂
Python:
char = '\u5602'
print(char) # Output: 嘂
Perl:
my $char = "\x{5602}";
print $char; # Output: 嘂
PHP:
$char = "\x{5602}";
echo $char; // Output: 嘂
Ruby:
char = "\u{5602}"
puts char # Output: 嘂
Rust:
let c = '\u{5602}';
println!("{}", c); // Output: 嘂
Go:
char := '\u5602'
fmt.Printf("%c\n", char) // Output: 嘂
CSS:
/* CSS content property */
.element::before {
content: "\005602"; /* 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%98%82
MD5:
5607c625e2e1d6b753ed69fad8b4ad56
SHA1:
4be75f9604b585ead431b7634cdb3efec8c6692c
Base64:
5ZiC