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