C:
char c = '\u9F59';
printf("%c\n", c); // Output: 齙
JavaScript:
const char = '\u9F59';
console.log(char); // Output: 齙
Java:
char c = '\u9F59';
System.out.println(c); // Output: 齙
JSON:
{"text": "\u9F59"} // Value: 齙
Python:
char = '\u9F59'
print(char) # Output: 齙
Perl:
my $char = "\x{9F59}";
print $char; # Output: 齙
PHP:
$char = "\x{9F59}";
echo $char; // Output: 齙
Ruby:
char = "\u{9F59}"
puts char # Output: 齙
Rust:
let c = '\u{9F59}';
println!("{}", c); // Output: 齙
Go:
char := '\u9F59'
fmt.Printf("%c\n", char) // Output: 齙
CSS:
/* CSS content property */
.element::before {
content: "\009F59"; /* 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%BD%99
MD5:
22e4c881607befa1ede6632615227b05
SHA1:
a50ae8a723f6d3945d6ea9cd09126f428adc8c41
Base64:
6b2Z