C:
char c = '\u8781';
printf("%c\n", c); // Output: 螁
JavaScript:
const char = '\u8781';
console.log(char); // Output: 螁
Java:
char c = '\u8781';
System.out.println(c); // Output: 螁
JSON:
{"text": "\u8781"} // Value: 螁
Python:
char = '\u8781'
print(char) # Output: 螁
Perl:
my $char = "\x{8781}";
print $char; # Output: 螁
PHP:
$char = "\x{8781}";
echo $char; // Output: 螁
Ruby:
char = "\u{8781}"
puts char # Output: 螁
Rust:
let c = '\u{8781}';
println!("{}", c); // Output: 螁
Go:
char := '\u8781'
fmt.Printf("%c\n", char) // Output: 螁
CSS:
/* CSS content property */
.element::before {
content: "\008781"; /* 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%81
MD5:
d6ce8c66d1534426277666b8d047f75f
SHA1:
2a855813db943471c18990a6db3c4d2d6de5d4f5
Base64:
6J6B