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