C:
char c = '\u9863';
printf("%c\n", c); // Output: 顣
JavaScript:
const char = '\u9863';
console.log(char); // Output: 顣
Java:
char c = '\u9863';
System.out.println(c); // Output: 顣
JSON:
{"text": "\u9863"} // Value: 顣
Python:
char = '\u9863'
print(char) # Output: 顣
Perl:
my $char = "\x{9863}";
print $char; # Output: 顣
PHP:
$char = "\x{9863}";
echo $char; // Output: 顣
Ruby:
char = "\u{9863}"
puts char # Output: 顣
Rust:
let c = '\u{9863}';
println!("{}", c); // Output: 顣
Go:
char := '\u9863'
fmt.Printf("%c\n", char) // Output: 顣
CSS:
/* CSS content property */
.element::before {
content: "\009863"; /* 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%A3
MD5:
8c927ef70db1df64f2d6b71ad0a9a0c6
SHA1:
30af6bb4e21e5d75cabba963f3e906f1da4f2482
Base64:
6aGj