C:
char c = '\u7410';
printf("%c\n", c); // Output: 琐
JavaScript:
const char = '\u7410';
console.log(char); // Output: 琐
Java:
char c = '\u7410';
System.out.println(c); // Output: 琐
JSON:
{"text": "\u7410"} // Value: 琐
Python:
char = '\u7410'
print(char) # Output: 琐
Perl:
my $char = "\x{7410}";
print $char; # Output: 琐
PHP:
$char = "\x{7410}";
echo $char; // Output: 琐
Ruby:
char = "\u{7410}"
puts char # Output: 琐
Rust:
let c = '\u{7410}';
println!("{}", c); // Output: 琐
Go:
char := '\u7410'
fmt.Printf("%c\n", char) // Output: 琐
CSS:
/* CSS content property */
.element::before {
content: "\007410"; /* 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%90
MD5:
b61b8eeded0d05ab4e40e26b61155110
SHA1:
5fe1b4eb34e03fd860830f8f309b695541f3aa74
Base64:
55CQ