C:
char c = '\u9252';
printf("%c\n", c); // Output: 鉒
JavaScript:
const char = '\u9252';
console.log(char); // Output: 鉒
Java:
char c = '\u9252';
System.out.println(c); // Output: 鉒
JSON:
{"text": "\u9252"} // Value: 鉒
Python:
char = '\u9252'
print(char) # Output: 鉒
Perl:
my $char = "\x{9252}";
print $char; # Output: 鉒
PHP:
$char = "\x{9252}";
echo $char; // Output: 鉒
Ruby:
char = "\u{9252}"
puts char # Output: 鉒
Rust:
let c = '\u{9252}';
println!("{}", c); // Output: 鉒
Go:
char := '\u9252'
fmt.Printf("%c\n", char) // Output: 鉒
CSS:
/* CSS content property */
.element::before {
content: "\009252"; /* 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%92
MD5:
67c268211223c6f0d0faf3e9bf51fd80
SHA1:
2f973cb0e129d00735239dd6d8be39c1deb96c05
Base64:
6YmS