C:
char c = '\u5BE9';
printf("%c\n", c); // Output: 審
JavaScript:
const char = '\u5BE9';
console.log(char); // Output: 審
Java:
char c = '\u5BE9';
System.out.println(c); // Output: 審
JSON:
{"text": "\u5BE9"} // Value: 審
Python:
char = '\u5BE9'
print(char) # Output: 審
Perl:
my $char = "\x{5BE9}";
print $char; # Output: 審
PHP:
$char = "\x{5BE9}";
echo $char; // Output: 審
Ruby:
char = "\u{5BE9}"
puts char # Output: 審
Rust:
let c = '\u{5BE9}';
println!("{}", c); // Output: 審
Go:
char := '\u5BE9'
fmt.Printf("%c\n", char) // Output: 審
CSS:
/* CSS content property */
.element::before {
content: "\005BE9"; /* 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%A9
MD5:
cc0565669e257c854582fa5b5248145a
SHA1:
70a0ec61e63f2bba4992182da75894e35f41133b
Base64:
5a+p