C:
char c = '\u9219';
printf("%c\n", c); // Output: 鈙
JavaScript:
const char = '\u9219';
console.log(char); // Output: 鈙
Java:
char c = '\u9219';
System.out.println(c); // Output: 鈙
JSON:
{"text": "\u9219"} // Value: 鈙
Python:
char = '\u9219'
print(char) # Output: 鈙
Perl:
my $char = "\x{9219}";
print $char; # Output: 鈙
PHP:
$char = "\x{9219}";
echo $char; // Output: 鈙
Ruby:
char = "\u{9219}"
puts char # Output: 鈙
Rust:
let c = '\u{9219}';
println!("{}", c); // Output: 鈙
Go:
char := '\u9219'
fmt.Printf("%c\n", char) // Output: 鈙
CSS:
/* CSS content property */
.element::before {
content: "\009219"; /* 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%99
MD5:
244be7ab385a8f424421bc923e7ce7da
SHA1:
979ab0550f183ec92cfb9ee6d573b40582ced56e
Base64:
6YiZ