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