C:
char c = '\u57A4';
printf("%c\n", c); // Output: 垤
JavaScript:
const char = '\u57A4';
console.log(char); // Output: 垤
Java:
char c = '\u57A4';
System.out.println(c); // Output: 垤
JSON:
{"text": "\u57A4"} // Value: 垤
Python:
char = '\u57A4'
print(char) # Output: 垤
Perl:
my $char = "\x{57A4}";
print $char; # Output: 垤
PHP:
$char = "\x{57A4}";
echo $char; // Output: 垤
Ruby:
char = "\u{57A4}"
puts char # Output: 垤
Rust:
let c = '\u{57A4}';
println!("{}", c); // Output: 垤
Go:
char := '\u57A4'
fmt.Printf("%c\n", char) // Output: 垤
CSS:
/* CSS content property */
.element::before {
content: "\0057A4"; /* 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%9E%A4
MD5:
80fc99b634d0e6c265e233f1059f16d7
SHA1:
8b7aa8c0d3f9ac8845aa89ef156871a005922e03
Base64:
5Z6k