C:
char c = '\u87B2';
printf("%c\n", c); // Output: 螲
JavaScript:
const char = '\u87B2';
console.log(char); // Output: 螲
Java:
char c = '\u87B2';
System.out.println(c); // Output: 螲
JSON:
{"text": "\u87B2"} // Value: 螲
Python:
char = '\u87B2'
print(char) # Output: 螲
Perl:
my $char = "\x{87B2}";
print $char; # Output: 螲
PHP:
$char = "\x{87B2}";
echo $char; // Output: 螲
Ruby:
char = "\u{87B2}"
puts char # Output: 螲
Rust:
let c = '\u{87B2}';
println!("{}", c); // Output: 螲
Go:
char := '\u87B2'
fmt.Printf("%c\n", char) // Output: 螲
CSS:
/* CSS content property */
.element::before {
content: "\0087B2"; /* 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%9E%B2
MD5:
ee85b223e6266666d53346f8e8e5820e
SHA1:
f759c0b599c0ba6b4d4f4c7deb28646b67337fd8
Base64:
6J6y