C:
char c = '\u8A84';
printf("%c\n", c); // Output: 誄
JavaScript:
const char = '\u8A84';
console.log(char); // Output: 誄
Java:
char c = '\u8A84';
System.out.println(c); // Output: 誄
JSON:
{"text": "\u8A84"} // Value: 誄
Python:
char = '\u8A84'
print(char) # Output: 誄
Perl:
my $char = "\x{8A84}";
print $char; # Output: 誄
PHP:
$char = "\x{8A84}";
echo $char; // Output: 誄
Ruby:
char = "\u{8A84}"
puts char # Output: 誄
Rust:
let c = '\u{8A84}';
println!("{}", c); // Output: 誄
Go:
char := '\u8A84'
fmt.Printf("%c\n", char) // Output: 誄
CSS:
/* CSS content property */
.element::before {
content: "\008A84"; /* 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%AA%84
MD5:
a4192f0d8439cea0ee0699d187427a02
SHA1:
a9fe49b7649ad8ecefa453d2fda08d381cf97679
Base64:
6KqE