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