C:
char c = '\u9218';
printf("%c\n", c); // Output: 鈘
JavaScript:
const char = '\u9218';
console.log(char); // Output: 鈘
Java:
char c = '\u9218';
System.out.println(c); // Output: 鈘
JSON:
{"text": "\u9218"} // Value: 鈘
Python:
char = '\u9218'
print(char) # Output: 鈘
Perl:
my $char = "\x{9218}";
print $char; # Output: 鈘
PHP:
$char = "\x{9218}";
echo $char; // Output: 鈘
Ruby:
char = "\u{9218}"
puts char # Output: 鈘
Rust:
let c = '\u{9218}';
println!("{}", c); // Output: 鈘
Go:
char := '\u9218'
fmt.Printf("%c\n", char) // Output: 鈘
CSS:
/* CSS content property */
.element::before {
content: "\009218"; /* 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%98
MD5:
6c1376e3ea744e6e2bdaa67b8a434ea9
SHA1:
28da6b77ec71f3212df285f90fbee753151e6f4b
Base64:
6YiY