C:
char c = '\u9223';
printf("%c\n", c); // Output: 鈣
JavaScript:
const char = '\u9223';
console.log(char); // Output: 鈣
Java:
char c = '\u9223';
System.out.println(c); // Output: 鈣
JSON:
{"text": "\u9223"} // Value: 鈣
Python:
char = '\u9223'
print(char) # Output: 鈣
Perl:
my $char = "\x{9223}";
print $char; # Output: 鈣
PHP:
$char = "\x{9223}";
echo $char; // Output: 鈣
Ruby:
char = "\u{9223}"
puts char # Output: 鈣
Rust:
let c = '\u{9223}';
println!("{}", c); // Output: 鈣
Go:
char := '\u9223'
fmt.Printf("%c\n", char) // Output: 鈣
CSS:
/* CSS content property */
.element::before {
content: "\009223"; /* 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%A3
MD5:
17614a94eab8a6d5da2f800916a27b4c
SHA1:
893232e5e238924494191416b671496b2551f26d
Base64:
6Yij