C:
char c = '\u9263';
printf("%c\n", c); // Output: 鉣
JavaScript:
const char = '\u9263';
console.log(char); // Output: 鉣
Java:
char c = '\u9263';
System.out.println(c); // Output: 鉣
JSON:
{"text": "\u9263"} // Value: 鉣
Python:
char = '\u9263'
print(char) # Output: 鉣
Perl:
my $char = "\x{9263}";
print $char; # Output: 鉣
PHP:
$char = "\x{9263}";
echo $char; // Output: 鉣
Ruby:
char = "\u{9263}"
puts char # Output: 鉣
Rust:
let c = '\u{9263}';
println!("{}", c); // Output: 鉣
Go:
char := '\u9263'
fmt.Printf("%c\n", char) // Output: 鉣
CSS:
/* CSS content property */
.element::before {
content: "\009263"; /* 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%A3
MD5:
92f6a539f25625f70da84410bbd68dcf
SHA1:
83a82216483d3133e3f99d12019b43be916959ff
Base64:
6Ymj