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