C:
char c = '\u87C2';
printf("%c\n", c); // Output: 蟂
JavaScript:
const char = '\u87C2';
console.log(char); // Output: 蟂
Java:
char c = '\u87C2';
System.out.println(c); // Output: 蟂
JSON:
{"text": "\u87C2"} // Value: 蟂
Python:
char = '\u87C2'
print(char) # Output: 蟂
Perl:
my $char = "\x{87C2}";
print $char; # Output: 蟂
PHP:
$char = "\x{87C2}";
echo $char; // Output: 蟂
Ruby:
char = "\u{87C2}"
puts char # Output: 蟂
Rust:
let c = '\u{87C2}';
println!("{}", c); // Output: 蟂
Go:
char := '\u87C2'
fmt.Printf("%c\n", char) // Output: 蟂
CSS:
/* CSS content property */
.element::before {
content: "\0087C2"; /* 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%82
MD5:
878b75858d5c720e0cc54be8b4c2e821
SHA1:
1e5fa094219b33769880cc25220e235d61d304af
Base64:
6J+C