C:
char c = '\u8780';
printf("%c\n", c); // Output: 螀
JavaScript:
const char = '\u8780';
console.log(char); // Output: 螀
Java:
char c = '\u8780';
System.out.println(c); // Output: 螀
JSON:
{"text": "\u8780"} // Value: 螀
Python:
char = '\u8780'
print(char) # Output: 螀
Perl:
my $char = "\x{8780}";
print $char; # Output: 螀
PHP:
$char = "\x{8780}";
echo $char; // Output: 螀
Ruby:
char = "\u{8780}"
puts char # Output: 螀
Rust:
let c = '\u{8780}';
println!("{}", c); // Output: 螀
Go:
char := '\u8780'
fmt.Printf("%c\n", char) // Output: 螀
CSS:
/* CSS content property */
.element::before {
content: "\008780"; /* 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%80
MD5:
a382822cbd6d6c930fff6f0cc87e2c71
SHA1:
64b0f51b97db554488ff8afcffa80eb2475830f6
Base64:
6J6A