C:
char c = '\u5621';
printf("%c\n", c); // Output: 嘡
JavaScript:
const char = '\u5621';
console.log(char); // Output: 嘡
Java:
char c = '\u5621';
System.out.println(c); // Output: 嘡
JSON:
{"text": "\u5621"} // Value: 嘡
Python:
char = '\u5621'
print(char) # Output: 嘡
Perl:
my $char = "\x{5621}";
print $char; # Output: 嘡
PHP:
$char = "\x{5621}";
echo $char; // Output: 嘡
Ruby:
char = "\u{5621}"
puts char # Output: 嘡
Rust:
let c = '\u{5621}';
println!("{}", c); // Output: 嘡
Go:
char := '\u5621'
fmt.Printf("%c\n", char) // Output: 嘡
CSS:
/* CSS content property */
.element::before {
content: "\005621"; /* 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%A1
MD5:
a7431fccb78fb9d5b8508ad215824bf5
SHA1:
d425b85033838390a399732c8228def767646db4
Base64:
5Zih