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