C:
char c = '\u9242';
printf("%c\n", c); // Output: 鉂
JavaScript:
const char = '\u9242';
console.log(char); // Output: 鉂
Java:
char c = '\u9242';
System.out.println(c); // Output: 鉂
JSON:
{"text": "\u9242"} // Value: 鉂
Python:
char = '\u9242'
print(char) # Output: 鉂
Perl:
my $char = "\x{9242}";
print $char; # Output: 鉂
PHP:
$char = "\x{9242}";
echo $char; // Output: 鉂
Ruby:
char = "\u{9242}"
puts char # Output: 鉂
Rust:
let c = '\u{9242}';
println!("{}", c); // Output: 鉂
Go:
char := '\u9242'
fmt.Printf("%c\n", char) // Output: 鉂
CSS:
/* CSS content property */
.element::before {
content: "\009242"; /* 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%82
MD5:
e47ae3e4ed7afab476985726f5f5a02c
SHA1:
39b833fd3ad1d1fa915bab4879c2c39e3a265f8d
Base64:
6YmC