C:
char c = '\u9222';
printf("%c\n", c); // Output: 鈢
JavaScript:
const char = '\u9222';
console.log(char); // Output: 鈢
Java:
char c = '\u9222';
System.out.println(c); // Output: 鈢
JSON:
{"text": "\u9222"} // Value: 鈢
Python:
char = '\u9222'
print(char) # Output: 鈢
Perl:
my $char = "\x{9222}";
print $char; # Output: 鈢
PHP:
$char = "\x{9222}";
echo $char; // Output: 鈢
Ruby:
char = "\u{9222}"
puts char # Output: 鈢
Rust:
let c = '\u{9222}';
println!("{}", c); // Output: 鈢
Go:
char := '\u9222'
fmt.Printf("%c\n", char) // Output: 鈢
CSS:
/* CSS content property */
.element::before {
content: "\009222"; /* 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%A2
MD5:
16fb0c5d3106f6df1aae5c7f439457d3
SHA1:
0e3a0ed457735abdd7ffd267388582e4617ce6a5
Base64:
6Yii