C:
char c = '\u9204';
printf("%c\n", c); // Output: 鈄
JavaScript:
const char = '\u9204';
console.log(char); // Output: 鈄
Java:
char c = '\u9204';
System.out.println(c); // Output: 鈄
JSON:
{"text": "\u9204"} // Value: 鈄
Python:
char = '\u9204'
print(char) # Output: 鈄
Perl:
my $char = "\x{9204}";
print $char; # Output: 鈄
PHP:
$char = "\x{9204}";
echo $char; // Output: 鈄
Ruby:
char = "\u{9204}"
puts char # Output: 鈄
Rust:
let c = '\u{9204}';
println!("{}", c); // Output: 鈄
Go:
char := '\u9204'
fmt.Printf("%c\n", char) // Output: 鈄
CSS:
/* CSS content property */
.element::before {
content: "\009204"; /* 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%84
MD5:
711dbd1e11493d99ab692c74eaf13497
SHA1:
a75fbe21d7e2c76337b970233ec778faf12110d7
Base64:
6YiE