C:
char c = '\u5605';
printf("%c\n", c); // Output: 嘅
JavaScript:
const char = '\u5605';
console.log(char); // Output: 嘅
Java:
char c = '\u5605';
System.out.println(c); // Output: 嘅
JSON:
{"text": "\u5605"} // Value: 嘅
Python:
char = '\u5605'
print(char) # Output: 嘅
Perl:
my $char = "\x{5605}";
print $char; # Output: 嘅
PHP:
$char = "\x{5605}";
echo $char; // Output: 嘅
Ruby:
char = "\u{5605}"
puts char # Output: 嘅
Rust:
let c = '\u{5605}';
println!("{}", c); // Output: 嘅
Go:
char := '\u5605'
fmt.Printf("%c\n", char) // Output: 嘅
CSS:
/* CSS content property */
.element::before {
content: "\005605"; /* 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%85
MD5:
36fd46bd270f2eb7c7dee0190ee73c9e
SHA1:
a37481d6f41db06e26e938bd8534d74eaac54de2
Base64:
5ZiF