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