C:
char c = '\u5415';
printf("%c\n", c); // Output: 吕
JavaScript:
const char = '\u5415';
console.log(char); // Output: 吕
Java:
char c = '\u5415';
System.out.println(c); // Output: 吕
JSON:
{"text": "\u5415"} // Value: 吕
Python:
char = '\u5415'
print(char) # Output: 吕
Perl:
my $char = "\x{5415}";
print $char; # Output: 吕
PHP:
$char = "\x{5415}";
echo $char; // Output: 吕
Ruby:
char = "\u{5415}"
puts char # Output: 吕
Rust:
let c = '\u{5415}';
println!("{}", c); // Output: 吕
Go:
char := '\u5415'
fmt.Printf("%c\n", char) // Output: 吕
CSS:
/* CSS content property */
.element::before {
content: "\005415"; /* 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%95
MD5:
cea1bc6e1bb31e1eced6ad8f052bfa33
SHA1:
b3c708eba41ac63186be946d44d990b687942684
Base64:
5ZCV