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