C:
char c = '\u8719';
printf("%c\n", c); // Output: 蜙
JavaScript:
const char = '\u8719';
console.log(char); // Output: 蜙
Java:
char c = '\u8719';
System.out.println(c); // Output: 蜙
JSON:
{"text": "\u8719"} // Value: 蜙
Python:
char = '\u8719'
print(char) # Output: 蜙
Perl:
my $char = "\x{8719}";
print $char; # Output: 蜙
PHP:
$char = "\x{8719}";
echo $char; // Output: 蜙
Ruby:
char = "\u{8719}"
puts char # Output: 蜙
Rust:
let c = '\u{8719}';
println!("{}", c); // Output: 蜙
Go:
char := '\u8719'
fmt.Printf("%c\n", char) // Output: 蜙
CSS:
/* CSS content property */
.element::before {
content: "\008719"; /* 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%9C%99
MD5:
fddd4a9f7416c12d8ff363cb06b0f00a
SHA1:
5b4d25b67af3aa5494a016b7921c0fcc4cb97fc8
Base64:
6JyZ