C:
char c = '\u8769';
printf("%c\n", c); // Output: 蝩
JavaScript:
const char = '\u8769';
console.log(char); // Output: 蝩
Java:
char c = '\u8769';
System.out.println(c); // Output: 蝩
JSON:
{"text": "\u8769"} // Value: 蝩
Python:
char = '\u8769'
print(char) # Output: 蝩
Perl:
my $char = "\x{8769}";
print $char; # Output: 蝩
PHP:
$char = "\x{8769}";
echo $char; // Output: 蝩
Ruby:
char = "\u{8769}"
puts char # Output: 蝩
Rust:
let c = '\u{8769}';
println!("{}", c); // Output: 蝩
Go:
char := '\u8769'
fmt.Printf("%c\n", char) // Output: 蝩
CSS:
/* CSS content property */
.element::before {
content: "\008769"; /* 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%9D%A9
MD5:
e09d04c5217eecb45d8789fea57102f2
SHA1:
390f6d75043111c5cad6344f1394b56a4c66ef08
Base64:
6J2p