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