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