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