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