C:
char c = '\u87AB';
printf("%c\n", c); // Output: 螫
JavaScript:
const char = '\u87AB';
console.log(char); // Output: 螫
Java:
char c = '\u87AB';
System.out.println(c); // Output: 螫
JSON:
{"text": "\u87AB"} // Value: 螫
Python:
char = '\u87AB'
print(char) # Output: 螫
Perl:
my $char = "\x{87AB}";
print $char; # Output: 螫
PHP:
$char = "\x{87AB}";
echo $char; // Output: 螫
Ruby:
char = "\u{87AB}"
puts char # Output: 螫
Rust:
let c = '\u{87AB}';
println!("{}", c); // Output: 螫
Go:
char := '\u87AB'
fmt.Printf("%c\n", char) // Output: 螫
CSS:
/* CSS content property */
.element::before {
content: "\0087AB"; /* 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%9E%AB
MD5:
b5885139ddb339560ea8944497974491
SHA1:
e8250da6940212786fca825116e2efd59d8e2227
Base64:
6J6r