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