C:
char c = '\u65DA';
printf("%c\n", c); // Output: 旚
JavaScript:
const char = '\u65DA';
console.log(char); // Output: 旚
Java:
char c = '\u65DA';
System.out.println(c); // Output: 旚
JSON:
{"text": "\u65DA"} // Value: 旚
Python:
char = '\u65DA'
print(char) # Output: 旚
Perl:
my $char = "\x{65DA}";
print $char; # Output: 旚
PHP:
$char = "\x{65DA}";
echo $char; // Output: 旚
Ruby:
char = "\u{65DA}"
puts char # Output: 旚
Rust:
let c = '\u{65DA}';
println!("{}", c); // Output: 旚
Go:
char := '\u65DA'
fmt.Printf("%c\n", char) // Output: 旚
CSS:
/* CSS content property */
.element::before {
content: "\0065DA"; /* 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=%E6%97%9A
MD5:
67008a99e1b1da92235fd24d96f67d38
SHA1:
e14fef78c9dce31cadd53270858df00041b68121
Base64:
5pea