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