C:
char c = '\u9867';
printf("%c\n", c); // Output: 顧
JavaScript:
const char = '\u9867';
console.log(char); // Output: 顧
Java:
char c = '\u9867';
System.out.println(c); // Output: 顧
JSON:
{"text": "\u9867"} // Value: 顧
Python:
char = '\u9867'
print(char) # Output: 顧
Perl:
my $char = "\x{9867}";
print $char; # Output: 顧
PHP:
$char = "\x{9867}";
echo $char; // Output: 顧
Ruby:
char = "\u{9867}"
puts char # Output: 顧
Rust:
let c = '\u{9867}';
println!("{}", c); // Output: 顧
Go:
char := '\u9867'
fmt.Printf("%c\n", char) // Output: 顧
CSS:
/* CSS content property */
.element::before {
content: "\009867"; /* 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%A7
MD5:
9f15e3a12fa9b256d3dbdf78c420e5ef
SHA1:
70e501d57bb13fef627259b84df1f8d44da249da
Base64:
6aGn