C:
char c = '\u9825';
printf("%c\n", c); // Output: 頥
JavaScript:
const char = '\u9825';
console.log(char); // Output: 頥
Java:
char c = '\u9825';
System.out.println(c); // Output: 頥
JSON:
{"text": "\u9825"} // Value: 頥
Python:
char = '\u9825'
print(char) # Output: 頥
Perl:
my $char = "\x{9825}";
print $char; # Output: 頥
PHP:
$char = "\x{9825}";
echo $char; // Output: 頥
Ruby:
char = "\u{9825}"
puts char # Output: 頥
Rust:
let c = '\u{9825}';
println!("{}", c); // Output: 頥
Go:
char := '\u9825'
fmt.Printf("%c\n", char) // Output: 頥
CSS:
/* CSS content property */
.element::before {
content: "\009825"; /* 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%A0%A5
MD5:
50675cb041163be30792c36b15b50185
SHA1:
905ca024405ce1323f27731fb1638777b3dc7470
Base64:
6aCl