C:
char c = '\u98A0';
printf("%c\n", c); // Output: 颠
JavaScript:
const char = '\u98A0';
console.log(char); // Output: 颠
Java:
char c = '\u98A0';
System.out.println(c); // Output: 颠
JSON:
{"text": "\u98A0"} // Value: 颠
Python:
char = '\u98A0'
print(char) # Output: 颠
Perl:
my $char = "\x{98A0}";
print $char; # Output: 颠
PHP:
$char = "\x{98A0}";
echo $char; // Output: 颠
Ruby:
char = "\u{98A0}"
puts char # Output: 颠
Rust:
let c = '\u{98A0}';
println!("{}", c); // Output: 颠
Go:
char := '\u98A0'
fmt.Printf("%c\n", char) // Output: 颠
CSS:
/* CSS content property */
.element::before {
content: "\0098A0"; /* 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%A2%A0
MD5:
44a116f4c4a6d860d927c89fda87752a
SHA1:
d4ad1e6a79775e3324d2faf7c081f50fc01156aa
Base64:
6aKg