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