C:
char c = '\u540F';
printf("%c\n", c); // Output: 吏
JavaScript:
const char = '\u540F';
console.log(char); // Output: 吏
Java:
char c = '\u540F';
System.out.println(c); // Output: 吏
JSON:
{"text": "\u540F"} // Value: 吏
Python:
char = '\u540F'
print(char) # Output: 吏
Perl:
my $char = "\x{540F}";
print $char; # Output: 吏
PHP:
$char = "\x{540F}";
echo $char; // Output: 吏
Ruby:
char = "\u{540F}"
puts char # Output: 吏
Rust:
let c = '\u{540F}';
println!("{}", c); // Output: 吏
Go:
char := '\u540F'
fmt.Printf("%c\n", char) // Output: 吏
CSS:
/* CSS content property */
.element::before {
content: "\00540F"; /* 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%90%8F
MD5:
dbef701eb9e4f53b2952443cceb04d05
SHA1:
51d128ddbc9ab26f10e54a365d9e327553098b0d
Base64:
5ZCP