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