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