C:
char c = '\u9847';
printf("%c\n", c); // Output: 顇
JavaScript:
const char = '\u9847';
console.log(char); // Output: 顇
Java:
char c = '\u9847';
System.out.println(c); // Output: 顇
JSON:
{"text": "\u9847"} // Value: 顇
Python:
char = '\u9847'
print(char) # Output: 顇
Perl:
my $char = "\x{9847}";
print $char; # Output: 顇
PHP:
$char = "\x{9847}";
echo $char; // Output: 顇
Ruby:
char = "\u{9847}"
puts char # Output: 顇
Rust:
let c = '\u{9847}';
println!("{}", c); // Output: 顇
Go:
char := '\u9847'
fmt.Printf("%c\n", char) // Output: 顇
CSS:
/* CSS content property */
.element::before {
content: "\009847"; /* 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=%E9%A1%87
MD5:
9c167136955dff5b207de40313f6d304
SHA1:
b15c1819351324944ea78b2b3d507bc4cde8b4bf
Base64:
6aGH