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