C:
char c = '\u7433';
printf("%c\n", c); // Output: 琳
JavaScript:
const char = '\u7433';
console.log(char); // Output: 琳
Java:
char c = '\u7433';
System.out.println(c); // Output: 琳
JSON:
{"text": "\u7433"} // Value: 琳
Python:
char = '\u7433'
print(char) # Output: 琳
Perl:
my $char = "\x{7433}";
print $char; # Output: 琳
PHP:
$char = "\x{7433}";
echo $char; // Output: 琳
Ruby:
char = "\u{7433}"
puts char # Output: 琳
Rust:
let c = '\u{7433}';
println!("{}", c); // Output: 琳
Go:
char := '\u7433'
fmt.Printf("%c\n", char) // Output: 琳
CSS:
/* CSS content property */
.element::before {
content: "\007433"; /* 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=%E7%90%B3
MD5:
03812930be05a5a2e9c86ea1def8f0d7
SHA1:
eab8b521b93fa8cce83e4113b67d0047391bea89
Base64:
55Cz