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