C:
char c = '\u9230';
printf("%c\n", c); // Output: 鈰
JavaScript:
const char = '\u9230';
console.log(char); // Output: 鈰
Java:
char c = '\u9230';
System.out.println(c); // Output: 鈰
JSON:
{"text": "\u9230"} // Value: 鈰
Python:
char = '\u9230'
print(char) # Output: 鈰
Perl:
my $char = "\x{9230}";
print $char; # Output: 鈰
PHP:
$char = "\x{9230}";
echo $char; // Output: 鈰
Ruby:
char = "\u{9230}"
puts char # Output: 鈰
Rust:
let c = '\u{9230}';
println!("{}", c); // Output: 鈰
Go:
char := '\u9230'
fmt.Printf("%c\n", char) // Output: 鈰
CSS:
/* CSS content property */
.element::before {
content: "\009230"; /* 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%B0
MD5:
05915d2a26f007dd7e5e023754dfae3d
SHA1:
a1b7115e6002b2db946b64831074d562b87d849c
Base64:
6Yiw