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