C:
char c = '\u84AB';
printf("%c\n", c); // Output: 蒫
JavaScript:
const char = '\u84AB';
console.log(char); // Output: 蒫
Java:
char c = '\u84AB';
System.out.println(c); // Output: 蒫
JSON:
{"text": "\u84AB"} // Value: 蒫
Python:
char = '\u84AB'
print(char) # Output: 蒫
Perl:
my $char = "\x{84AB}";
print $char; # Output: 蒫
PHP:
$char = "\x{84AB}";
echo $char; // Output: 蒫
Ruby:
char = "\u{84AB}"
puts char # Output: 蒫
Rust:
let c = '\u{84AB}';
println!("{}", c); // Output: 蒫
Go:
char := '\u84AB'
fmt.Printf("%c\n", char) // Output: 蒫
CSS:
/* CSS content property */
.element::before {
content: "\0084AB"; /* 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%92%AB
MD5:
f3ea0a1f01fb910617c6c86656e1bdc0
SHA1:
c017e8469c33df1f0ffdcce527cf8211fc6a6449
Base64:
6JKr