C:
char c = '\u5BA4';
printf("%c\n", c); // Output: 室
JavaScript:
const char = '\u5BA4';
console.log(char); // Output: 室
Java:
char c = '\u5BA4';
System.out.println(c); // Output: 室
JSON:
{"text": "\u5BA4"} // Value: 室
Python:
char = '\u5BA4'
print(char) # Output: 室
Perl:
my $char = "\x{5BA4}";
print $char; # Output: 室
PHP:
$char = "\x{5BA4}";
echo $char; // Output: 室
Ruby:
char = "\u{5BA4}"
puts char # Output: 室
Rust:
let c = '\u{5BA4}';
println!("{}", c); // Output: 室
Go:
char := '\u5BA4'
fmt.Printf("%c\n", char) // Output: 室
CSS:
/* CSS content property */
.element::before {
content: "\005BA4"; /* 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%AE%A4
MD5:
9d730376f5b171960de9977a0f9ef2d0
SHA1:
4faa260fd0a185cdf6739c6439fe957c0356cf2d
Base64:
5a6k