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