C:
char c = '\u5EAF';
printf("%c\n", c); // Output: 庯
JavaScript:
const char = '\u5EAF';
console.log(char); // Output: 庯
Java:
char c = '\u5EAF';
System.out.println(c); // Output: 庯
JSON:
{"text": "\u5EAF"} // Value: 庯
Python:
char = '\u5EAF'
print(char) # Output: 庯
Perl:
my $char = "\x{5EAF}";
print $char; # Output: 庯
PHP:
$char = "\x{5EAF}";
echo $char; // Output: 庯
Ruby:
char = "\u{5EAF}"
puts char # Output: 庯
Rust:
let c = '\u{5EAF}';
println!("{}", c); // Output: 庯
Go:
char := '\u5EAF'
fmt.Printf("%c\n", char) // Output: 庯
CSS:
/* CSS content property */
.element::before {
content: "\005EAF"; /* 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%BA%AF
MD5:
bee52a410a30d884c209aa5dc9c49a66
SHA1:
e1641aeeaf6ad1fcd09827c577d53ad6bbbab9de
Base64:
5bqv