C:
char c = '\u9865';
printf("%c\n", c); // Output: 顥
JavaScript:
const char = '\u9865';
console.log(char); // Output: 顥
Java:
char c = '\u9865';
System.out.println(c); // Output: 顥
JSON:
{"text": "\u9865"} // Value: 顥
Python:
char = '\u9865'
print(char) # Output: 顥
Perl:
my $char = "\x{9865}";
print $char; # Output: 顥
PHP:
$char = "\x{9865}";
echo $char; // Output: 顥
Ruby:
char = "\u{9865}"
puts char # Output: 顥
Rust:
let c = '\u{9865}';
println!("{}", c); // Output: 顥
Go:
char := '\u9865'
fmt.Printf("%c\n", char) // Output: 顥
CSS:
/* CSS content property */
.element::before {
content: "\009865"; /* 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%A5
MD5:
65f79c61badf116e17a10028f86ccc5d
SHA1:
04692eb504ef9d25cebb76464c04bbaa261699a4
Base64:
6aGl