C:
char c = '\u8487';
printf("%c\n", c); // Output: 蒇
JavaScript:
const char = '\u8487';
console.log(char); // Output: 蒇
Java:
char c = '\u8487';
System.out.println(c); // Output: 蒇
JSON:
{"text": "\u8487"} // Value: 蒇
Python:
char = '\u8487'
print(char) # Output: 蒇
Perl:
my $char = "\x{8487}";
print $char; # Output: 蒇
PHP:
$char = "\x{8487}";
echo $char; // Output: 蒇
Ruby:
char = "\u{8487}"
puts char # Output: 蒇
Rust:
let c = '\u{8487}';
println!("{}", c); // Output: 蒇
Go:
char := '\u8487'
fmt.Printf("%c\n", char) // Output: 蒇
CSS:
/* CSS content property */
.element::before {
content: "\008487"; /* 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%87
MD5:
369d7efce7bdaff0cf0fb8cf08bceb82
SHA1:
778b7e5cdd93f2a5454fb318d9fc1234b0f56578
Base64:
6JKH