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