C:
char c = '\u9449';
printf("%c\n", c); // Output: 鑉
JavaScript:
const char = '\u9449';
console.log(char); // Output: 鑉
Java:
char c = '\u9449';
System.out.println(c); // Output: 鑉
JSON:
{"text": "\u9449"} // Value: 鑉
Python:
char = '\u9449'
print(char) # Output: 鑉
Perl:
my $char = "\x{9449}";
print $char; # Output: 鑉
PHP:
$char = "\x{9449}";
echo $char; // Output: 鑉
Ruby:
char = "\u{9449}"
puts char # Output: 鑉
Rust:
let c = '\u{9449}';
println!("{}", c); // Output: 鑉
Go:
char := '\u9449'
fmt.Printf("%c\n", char) // Output: 鑉
CSS:
/* CSS content property */
.element::before {
content: "\009449"; /* 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=%E9%91%89
MD5:
e70ed9c105c6dde4e1b4aed54a7bc32f
SHA1:
42e238b7cfa966b8490bd0b7f277b200a6829201
Base64:
6ZGJ