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