C:
char c = '\u9228';
printf("%c\n", c); // Output: 鈨
JavaScript:
const char = '\u9228';
console.log(char); // Output: 鈨
Java:
char c = '\u9228';
System.out.println(c); // Output: 鈨
JSON:
{"text": "\u9228"} // Value: 鈨
Python:
char = '\u9228'
print(char) # Output: 鈨
Perl:
my $char = "\x{9228}";
print $char; # Output: 鈨
PHP:
$char = "\x{9228}";
echo $char; // Output: 鈨
Ruby:
char = "\u{9228}"
puts char # Output: 鈨
Rust:
let c = '\u{9228}';
println!("{}", c); // Output: 鈨
Go:
char := '\u9228'
fmt.Printf("%c\n", char) // Output: 鈨
CSS:
/* CSS content property */
.element::before {
content: "\009228"; /* 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%A8
MD5:
23bb6823f76d5e997047e88a836dc6ff
SHA1:
44a0b577e3da853a7d7941cce0c6c38f2356f182
Base64:
6Yio