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