C:
char c = '\u87F3';
printf("%c\n", c); // Output: 蟳
JavaScript:
const char = '\u87F3';
console.log(char); // Output: 蟳
Java:
char c = '\u87F3';
System.out.println(c); // Output: 蟳
JSON:
{"text": "\u87F3"} // Value: 蟳
Python:
char = '\u87F3'
print(char) # Output: 蟳
Perl:
my $char = "\x{87F3}";
print $char; # Output: 蟳
PHP:
$char = "\x{87F3}";
echo $char; // Output: 蟳
Ruby:
char = "\u{87F3}"
puts char # Output: 蟳
Rust:
let c = '\u{87F3}';
println!("{}", c); // Output: 蟳
Go:
char := '\u87F3'
fmt.Printf("%c\n", char) // Output: 蟳
CSS:
/* CSS content property */
.element::before {
content: "\0087F3"; /* 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%9F%B3
MD5:
978833cdd995f9e9ebf6cde9eecb7638
SHA1:
8ad9d5c19906b77ef5d219373561909cf483c889
Base64:
6J+z