C:
char c = '\u5481';
printf("%c\n", c); // Output: 咁
JavaScript:
const char = '\u5481';
console.log(char); // Output: 咁
Java:
char c = '\u5481';
System.out.println(c); // Output: 咁
JSON:
{"text": "\u5481"} // Value: 咁
Python:
char = '\u5481'
print(char) # Output: 咁
Perl:
my $char = "\x{5481}";
print $char; # Output: 咁
PHP:
$char = "\x{5481}";
echo $char; // Output: 咁
Ruby:
char = "\u{5481}"
puts char # Output: 咁
Rust:
let c = '\u{5481}';
println!("{}", c); // Output: 咁
Go:
char := '\u5481'
fmt.Printf("%c\n", char) // Output: 咁
CSS:
/* CSS content property */
.element::before {
content: "\005481"; /* 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%92%81
MD5:
5208de1d00f6142f87c635523d06ea3b
SHA1:
8fc61692870b45ac0df2fc79cfe283c27fd0336f
Base64:
5ZKB