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