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