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