C:
char c = '\u9858';
printf("%c\n", c); // Output: 願
JavaScript:
const char = '\u9858';
console.log(char); // Output: 願
Java:
char c = '\u9858';
System.out.println(c); // Output: 願
JSON:
{"text": "\u9858"} // Value: 願
Python:
char = '\u9858'
print(char) # Output: 願
Perl:
my $char = "\x{9858}";
print $char; # Output: 願
PHP:
$char = "\x{9858}";
echo $char; // Output: 願
Ruby:
char = "\u{9858}"
puts char # Output: 願
Rust:
let c = '\u{9858}';
println!("{}", c); // Output: 願
Go:
char := '\u9858'
fmt.Printf("%c\n", char) // Output: 願
CSS:
/* CSS content property */
.element::before {
content: "\009858"; /* 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%98
MD5:
9731201023963882fd04acde8a7f25f5
SHA1:
95a244ed2714890ab16d97f99f59d470e3ebd96e
Base64:
6aGY