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