C:
char c = '\u5059';
printf("%c\n", c); // Output: 偙
JavaScript:
const char = '\u5059';
console.log(char); // Output: 偙
Java:
char c = '\u5059';
System.out.println(c); // Output: 偙
JSON:
{"text": "\u5059"} // Value: 偙
Python:
char = '\u5059'
print(char) # Output: 偙
Perl:
my $char = "\x{5059}";
print $char; # Output: 偙
PHP:
$char = "\x{5059}";
echo $char; // Output: 偙
Ruby:
char = "\u{5059}"
puts char # Output: 偙
Rust:
let c = '\u{5059}';
println!("{}", c); // Output: 偙
Go:
char := '\u5059'
fmt.Printf("%c\n", char) // Output: 偙
CSS:
/* CSS content property */
.element::before {
content: "\005059"; /* 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%81%99
MD5:
b7ddc4e6684e565a38c7dad267c98321
SHA1:
9ff6985e104d62dbf4cdf30db1805185e3f63835
Base64:
5YGZ