C:
char c = '\u83BA';
printf("%c\n", c); // Output: 莺
JavaScript:
const char = '\u83BA';
console.log(char); // Output: 莺
Java:
char c = '\u83BA';
System.out.println(c); // Output: 莺
JSON:
{"text": "\u83BA"} // Value: 莺
Python:
char = '\u83BA'
print(char) # Output: 莺
Perl:
my $char = "\x{83BA}";
print $char; # Output: 莺
PHP:
$char = "\x{83BA}";
echo $char; // Output: 莺
Ruby:
char = "\u{83BA}"
puts char # Output: 莺
Rust:
let c = '\u{83BA}';
println!("{}", c); // Output: 莺
Go:
char := '\u83BA'
fmt.Printf("%c\n", char) // Output: 莺
CSS:
/* CSS content property */
.element::before {
content: "\0083BA"; /* 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=%E8%8E%BA
MD5:
3f9ccd6bbd28f583f7357ee2df7eb241
SHA1:
5bbeec4d9434b5921af1d6c402e4d04dd9fa3c02
Base64:
6I66