C:
char c = '\u9852';
printf("%c\n", c); // Output: 顒
JavaScript:
const char = '\u9852';
console.log(char); // Output: 顒
Java:
char c = '\u9852';
System.out.println(c); // Output: 顒
JSON:
{"text": "\u9852"} // Value: 顒
Python:
char = '\u9852'
print(char) # Output: 顒
Perl:
my $char = "\x{9852}";
print $char; # Output: 顒
PHP:
$char = "\x{9852}";
echo $char; // Output: 顒
Ruby:
char = "\u{9852}"
puts char # Output: 顒
Rust:
let c = '\u{9852}';
println!("{}", c); // Output: 顒
Go:
char := '\u9852'
fmt.Printf("%c\n", char) // Output: 顒
CSS:
/* CSS content property */
.element::before {
content: "\009852"; /* 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%92
MD5:
4e6c56051723a7a7a53515bc9d46e437
SHA1:
04e9d085dfd92bb03549b03ae1395edba18a046e
Base64:
6aGS