C:
char c = '\u9872';
printf("%c\n", c); // Output: 顲
JavaScript:
const char = '\u9872';
console.log(char); // Output: 顲
Java:
char c = '\u9872';
System.out.println(c); // Output: 顲
JSON:
{"text": "\u9872"} // Value: 顲
Python:
char = '\u9872'
print(char) # Output: 顲
Perl:
my $char = "\x{9872}";
print $char; # Output: 顲
PHP:
$char = "\x{9872}";
echo $char; // Output: 顲
Ruby:
char = "\u{9872}"
puts char # Output: 顲
Rust:
let c = '\u{9872}';
println!("{}", c); // Output: 顲
Go:
char := '\u9872'
fmt.Printf("%c\n", char) // Output: 顲
CSS:
/* CSS content property */
.element::before {
content: "\009872"; /* 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%B2
MD5:
877b282391cb91e2addfff06d32921b2
SHA1:
717c5651299ae5c14a3ca397380ef25f57c0e914
Base64:
6aGy