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