C:
char c = '\u7F65';
printf("%c\n", c); // Output: 罥
JavaScript:
const char = '\u7F65';
console.log(char); // Output: 罥
Java:
char c = '\u7F65';
System.out.println(c); // Output: 罥
JSON:
{"text": "\u7F65"} // Value: 罥
Python:
char = '\u7F65'
print(char) # Output: 罥
Perl:
my $char = "\x{7F65}";
print $char; # Output: 罥
PHP:
$char = "\x{7F65}";
echo $char; // Output: 罥
Ruby:
char = "\u{7F65}"
puts char # Output: 罥
Rust:
let c = '\u{7F65}';
println!("{}", c); // Output: 罥
Go:
char := '\u7F65'
fmt.Printf("%c\n", char) // Output: 罥
CSS:
/* CSS content property */
.element::before {
content: "\007F65"; /* 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=%E7%BD%A5
MD5:
fdf78739f6b4693a4839925055c5de56
SHA1:
239fdc70867bc07d858d2919e9660ca8e7d94ebf
Base64:
572l