C:
char c = '\u5682';
printf("%c\n", c); // Output: 嚂
JavaScript:
const char = '\u5682';
console.log(char); // Output: 嚂
Java:
char c = '\u5682';
System.out.println(c); // Output: 嚂
JSON:
{"text": "\u5682"} // Value: 嚂
Python:
char = '\u5682'
print(char) # Output: 嚂
Perl:
my $char = "\x{5682}";
print $char; # Output: 嚂
PHP:
$char = "\x{5682}";
echo $char; // Output: 嚂
Ruby:
char = "\u{5682}"
puts char # Output: 嚂
Rust:
let c = '\u{5682}';
println!("{}", c); // Output: 嚂
Go:
char := '\u5682'
fmt.Printf("%c\n", char) // Output: 嚂
CSS:
/* CSS content property */
.element::before {
content: "\005682"; /* 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%9A%82
MD5:
79ed5ea5dfba5d7ff696a1e6c0cbbab7
SHA1:
065f03acbee162099eaef23e374de296b77fc38f
Base64:
5ZqC