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