C:
char c = '\u7FF5';
printf("%c\n", c); // Output: 翵
JavaScript:
const char = '\u7FF5';
console.log(char); // Output: 翵
Java:
char c = '\u7FF5';
System.out.println(c); // Output: 翵
JSON:
{"text": "\u7FF5"} // Value: 翵
Python:
char = '\u7FF5'
print(char) # Output: 翵
Perl:
my $char = "\x{7FF5}";
print $char; # Output: 翵
PHP:
$char = "\x{7FF5}";
echo $char; // Output: 翵
Ruby:
char = "\u{7FF5}"
puts char # Output: 翵
Rust:
let c = '\u{7FF5}';
println!("{}", c); // Output: 翵
Go:
char := '\u7FF5'
fmt.Printf("%c\n", char) // Output: 翵
CSS:
/* CSS content property */
.element::before {
content: "\007FF5"; /* 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%BF%B5
MD5:
fda229a9fed628eb25f6c8fac7b2fa3e
SHA1:
ffd86d82e44f28c33d1dbbf571df2fcff3fe4db4
Base64:
57+1