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