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