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