C:
char c = '\u63F3';
printf("%c\n", c); // Output: 揳
JavaScript:
const char = '\u63F3';
console.log(char); // Output: 揳
Java:
char c = '\u63F3';
System.out.println(c); // Output: 揳
JSON:
{"text": "\u63F3"} // Value: 揳
Python:
char = '\u63F3'
print(char) # Output: 揳
Perl:
my $char = "\x{63F3}";
print $char; # Output: 揳
PHP:
$char = "\x{63F3}";
echo $char; // Output: 揳
Ruby:
char = "\u{63F3}"
puts char # Output: 揳
Rust:
let c = '\u{63F3}';
println!("{}", c); // Output: 揳
Go:
char := '\u63F3'
fmt.Printf("%c\n", char) // Output: 揳
CSS:
/* CSS content property */
.element::before {
content: "\0063F3"; /* 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%8F%B3
MD5:
2a4349cd95c77da03f352a4f6ed05353
SHA1:
df53e372d2d20e5aca40d7cdd0bee69d5dedd7f9
Base64:
5o+z