C:
char c = '\u5622';
printf("%c\n", c); // Output: 嘢
JavaScript:
const char = '\u5622';
console.log(char); // Output: 嘢
Java:
char c = '\u5622';
System.out.println(c); // Output: 嘢
JSON:
{"text": "\u5622"} // Value: 嘢
Python:
char = '\u5622'
print(char) # Output: 嘢
Perl:
my $char = "\x{5622}";
print $char; # Output: 嘢
PHP:
$char = "\x{5622}";
echo $char; // Output: 嘢
Ruby:
char = "\u{5622}"
puts char # Output: 嘢
Rust:
let c = '\u{5622}';
println!("{}", c); // Output: 嘢
Go:
char := '\u5622'
fmt.Printf("%c\n", char) // Output: 嘢
CSS:
/* CSS content property */
.element::before {
content: "\005622"; /* 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%A2
MD5:
a1357c62736947ee01f9be8489a9f66c
SHA1:
9dfd0dedf3f3fd798e7e7bbc7e45e11e14b2b4f7
Base64:
5Zii