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