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