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