C:
char c = '\u7483';
printf("%c\n", c); // Output: 璃
JavaScript:
const char = '\u7483';
console.log(char); // Output: 璃
Java:
char c = '\u7483';
System.out.println(c); // Output: 璃
JSON:
{"text": "\u7483"} // Value: 璃
Python:
char = '\u7483'
print(char) # Output: 璃
Perl:
my $char = "\x{7483}";
print $char; # Output: 璃
PHP:
$char = "\x{7483}";
echo $char; // Output: 璃
Ruby:
char = "\u{7483}"
puts char # Output: 璃
Rust:
let c = '\u{7483}';
println!("{}", c); // Output: 璃
Go:
char := '\u7483'
fmt.Printf("%c\n", char) // Output: 璃
CSS:
/* CSS content property */
.element::before {
content: "\007483"; /* 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%83
MD5:
e34da3611e713596c62cf5042ddf6177
SHA1:
9264d21dfc5f56b90e0afe873023ff5d5e6f56b2
Base64:
55KD