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