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