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