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