C:
char c = '\u5BE3';
printf("%c\n", c); // Output: 寣
JavaScript:
const char = '\u5BE3';
console.log(char); // Output: 寣
Java:
char c = '\u5BE3';
System.out.println(c); // Output: 寣
JSON:
{"text": "\u5BE3"} // Value: 寣
Python:
char = '\u5BE3'
print(char) # Output: 寣
Perl:
my $char = "\x{5BE3}";
print $char; # Output: 寣
PHP:
$char = "\x{5BE3}";
echo $char; // Output: 寣
Ruby:
char = "\u{5BE3}"
puts char # Output: 寣
Rust:
let c = '\u{5BE3}';
println!("{}", c); // Output: 寣
Go:
char := '\u5BE3'
fmt.Printf("%c\n", char) // Output: 寣
CSS:
/* CSS content property */
.element::before {
content: "\005BE3"; /* 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=%E5%AF%A3
MD5:
21a259175a4ff311c87b412b82d97ae6
SHA1:
1deb9775ced77e40e1f5c4088d6bd7b47542c9d6
Base64:
5a+j