C:
char c = '\u9423';
printf("%c\n", c); // Output: 鐣
JavaScript:
const char = '\u9423';
console.log(char); // Output: 鐣
Java:
char c = '\u9423';
System.out.println(c); // Output: 鐣
JSON:
{"text": "\u9423"} // Value: 鐣
Python:
char = '\u9423'
print(char) # Output: 鐣
Perl:
my $char = "\x{9423}";
print $char; # Output: 鐣
PHP:
$char = "\x{9423}";
echo $char; // Output: 鐣
Ruby:
char = "\u{9423}"
puts char # Output: 鐣
Rust:
let c = '\u{9423}';
println!("{}", c); // Output: 鐣
Go:
char := '\u9423'
fmt.Printf("%c\n", char) // Output: 鐣
CSS:
/* CSS content property */
.element::before {
content: "\009423"; /* 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%90%A3
MD5:
084e1a16347ea1538d6a345e8415b59a
SHA1:
afee2dab9b1eb94e52f9254f034728e70e1d15df
Base64:
6ZCj