C:
char c = '\u5630';
printf("%c\n", c); // Output: 嘰
JavaScript:
const char = '\u5630';
console.log(char); // Output: 嘰
Java:
char c = '\u5630';
System.out.println(c); // Output: 嘰
JSON:
{"text": "\u5630"} // Value: 嘰
Python:
char = '\u5630'
print(char) # Output: 嘰
Perl:
my $char = "\x{5630}";
print $char; # Output: 嘰
PHP:
$char = "\x{5630}";
echo $char; // Output: 嘰
Ruby:
char = "\u{5630}"
puts char # Output: 嘰
Rust:
let c = '\u{5630}';
println!("{}", c); // Output: 嘰
Go:
char := '\u5630'
fmt.Printf("%c\n", char) // Output: 嘰
CSS:
/* CSS content property */
.element::before {
content: "\005630"; /* 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%B0
MD5:
da4db0e866e8c8b000786f8aa26f8590
SHA1:
1e9efd0167da60e7e1db9099b47d76e5bdf139c5
Base64:
5Ziw