C:
char c = '\u9846';
printf("%c\n", c); // Output: 顆
JavaScript:
const char = '\u9846';
console.log(char); // Output: 顆
Java:
char c = '\u9846';
System.out.println(c); // Output: 顆
JSON:
{"text": "\u9846"} // Value: 顆
Python:
char = '\u9846'
print(char) # Output: 顆
Perl:
my $char = "\x{9846}";
print $char; # Output: 顆
PHP:
$char = "\x{9846}";
echo $char; // Output: 顆
Ruby:
char = "\u{9846}"
puts char # Output: 顆
Rust:
let c = '\u{9846}';
println!("{}", c); // Output: 顆
Go:
char := '\u9846'
fmt.Printf("%c\n", char) // Output: 顆
CSS:
/* CSS content property */
.element::before {
content: "\009846"; /* 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%86
MD5:
175a6a7dffcc549e71adf148f4d2935c
SHA1:
4766b83dd2ae496d4aa86f67c65bda436af52278
Base64:
6aGG