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