C:
char c = '\u89AB';
printf("%c\n", c); // Output: 覫
JavaScript:
const char = '\u89AB';
console.log(char); // Output: 覫
Java:
char c = '\u89AB';
System.out.println(c); // Output: 覫
JSON:
{"text": "\u89AB"} // Value: 覫
Python:
char = '\u89AB'
print(char) # Output: 覫
Perl:
my $char = "\x{89AB}";
print $char; # Output: 覫
PHP:
$char = "\x{89AB}";
echo $char; // Output: 覫
Ruby:
char = "\u{89AB}"
puts char # Output: 覫
Rust:
let c = '\u{89AB}';
println!("{}", c); // Output: 覫
Go:
char := '\u89AB'
fmt.Printf("%c\n", char) // Output: 覫
CSS:
/* CSS content property */
.element::before {
content: "\0089AB"; /* 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%A6%AB
MD5:
e1b480c4dbf4d05a42adfbb175057e00
SHA1:
34befad646f16cf11b22c37ae5b46e464208320b
Base64:
6Kar