C:
char c = '\u9221';
printf("%c\n", c); // Output: 鈡
JavaScript:
const char = '\u9221';
console.log(char); // Output: 鈡
Java:
char c = '\u9221';
System.out.println(c); // Output: 鈡
JSON:
{"text": "\u9221"} // Value: 鈡
Python:
char = '\u9221'
print(char) # Output: 鈡
Perl:
my $char = "\x{9221}";
print $char; # Output: 鈡
PHP:
$char = "\x{9221}";
echo $char; // Output: 鈡
Ruby:
char = "\u{9221}"
puts char # Output: 鈡
Rust:
let c = '\u{9221}';
println!("{}", c); // Output: 鈡
Go:
char := '\u9221'
fmt.Printf("%c\n", char) // Output: 鈡
CSS:
/* CSS content property */
.element::before {
content: "\009221"; /* 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%88%A1
MD5:
a6c1e490f5b7c66f5aa5acf537841e9e
SHA1:
239abc8ee2339af7f07a8bd7692890bc9242e93a
Base64:
6Yih