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