C:
char c = '\u5022';
printf("%c\n", c); // Output: 倢
JavaScript:
const char = '\u5022';
console.log(char); // Output: 倢
Java:
char c = '\u5022';
System.out.println(c); // Output: 倢
JSON:
{"text": "\u5022"} // Value: 倢
Python:
char = '\u5022'
print(char) # Output: 倢
Perl:
my $char = "\x{5022}";
print $char; # Output: 倢
PHP:
$char = "\x{5022}";
echo $char; // Output: 倢
Ruby:
char = "\u{5022}"
puts char # Output: 倢
Rust:
let c = '\u{5022}';
println!("{}", c); // Output: 倢
Go:
char := '\u5022'
fmt.Printf("%c\n", char) // Output: 倢
CSS:
/* CSS content property */
.element::before {
content: "\005022"; /* 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%80%A2
MD5:
52f675e965cf4a79114b923c54d5c719
SHA1:
d964561a7b4dacadaaee41dba72b5372f8ef0be6
Base64:
5YCi