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