C:
char c = '\u53B0';
printf("%c\n", c); // Output: 厰
JavaScript:
const char = '\u53B0';
console.log(char); // Output: 厰
Java:
char c = '\u53B0';
System.out.println(c); // Output: 厰
JSON:
{"text": "\u53B0"} // Value: 厰
Python:
char = '\u53B0'
print(char) # Output: 厰
Perl:
my $char = "\x{53B0}";
print $char; # Output: 厰
PHP:
$char = "\x{53B0}";
echo $char; // Output: 厰
Ruby:
char = "\u{53B0}"
puts char # Output: 厰
Rust:
let c = '\u{53B0}';
println!("{}", c); // Output: 厰
Go:
char := '\u53B0'
fmt.Printf("%c\n", char) // Output: 厰
CSS:
/* CSS content property */
.element::before {
content: "\0053B0"; /* 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%8E%B0
MD5:
5b673b2bc417cf37df435e20a4e3b7bb
SHA1:
32769d398e762b79113a0947c361a864ac62516f
Base64:
5Y6w