C:
char c = '\u9249';
printf("%c\n", c); // Output: 鉉
JavaScript:
const char = '\u9249';
console.log(char); // Output: 鉉
Java:
char c = '\u9249';
System.out.println(c); // Output: 鉉
JSON:
{"text": "\u9249"} // Value: 鉉
Python:
char = '\u9249'
print(char) # Output: 鉉
Perl:
my $char = "\x{9249}";
print $char; # Output: 鉉
PHP:
$char = "\x{9249}";
echo $char; // Output: 鉉
Ruby:
char = "\u{9249}"
puts char # Output: 鉉
Rust:
let c = '\u{9249}';
println!("{}", c); // Output: 鉉
Go:
char := '\u9249'
fmt.Printf("%c\n", char) // Output: 鉉
CSS:
/* CSS content property */
.element::before {
content: "\009249"; /* 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%89%89
MD5:
87c530d5dca840c3bf2aa49bdcc119be
SHA1:
da9f1f568412118f112e8ff4dacf81e80f661cc0
Base64:
6YmJ