C:
char c = '\u9868';
printf("%c\n", c); // Output: 顨
JavaScript:
const char = '\u9868';
console.log(char); // Output: 顨
Java:
char c = '\u9868';
System.out.println(c); // Output: 顨
JSON:
{"text": "\u9868"} // Value: 顨
Python:
char = '\u9868'
print(char) # Output: 顨
Perl:
my $char = "\x{9868}";
print $char; # Output: 顨
PHP:
$char = "\x{9868}";
echo $char; // Output: 顨
Ruby:
char = "\u{9868}"
puts char # Output: 顨
Rust:
let c = '\u{9868}';
println!("{}", c); // Output: 顨
Go:
char := '\u9868'
fmt.Printf("%c\n", char) // Output: 顨
CSS:
/* CSS content property */
.element::before {
content: "\009868"; /* 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%A8
MD5:
91e05f12304d90c4eef314c228346f25
SHA1:
c1169f2466f0368f79ef5b974da1175fb270c419
Base64:
6aGo