C:
char c = '\u9418';
printf("%c\n", c); // Output: 鐘
JavaScript:
const char = '\u9418';
console.log(char); // Output: 鐘
Java:
char c = '\u9418';
System.out.println(c); // Output: 鐘
JSON:
{"text": "\u9418"} // Value: 鐘
Python:
char = '\u9418'
print(char) # Output: 鐘
Perl:
my $char = "\x{9418}";
print $char; # Output: 鐘
PHP:
$char = "\x{9418}";
echo $char; // Output: 鐘
Ruby:
char = "\u{9418}"
puts char # Output: 鐘
Rust:
let c = '\u{9418}';
println!("{}", c); // Output: 鐘
Go:
char := '\u9418'
fmt.Printf("%c\n", char) // Output: 鐘
CSS:
/* CSS content property */
.element::before {
content: "\009418"; /* 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%90%98
MD5:
2bc19748c456ef4d7644fbfb5e3d7687
SHA1:
0f752c8e23992c2635090322a33a82b7940d46f0
Base64:
6ZCY