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