C:
char c = '\u9993';
printf("%c\n", c); // Output: 馓
JavaScript:
const char = '\u9993';
console.log(char); // Output: 馓
Java:
char c = '\u9993';
System.out.println(c); // Output: 馓
JSON:
{"text": "\u9993"} // Value: 馓
Python:
char = '\u9993'
print(char) # Output: 馓
Perl:
my $char = "\x{9993}";
print $char; # Output: 馓
PHP:
$char = "\x{9993}";
echo $char; // Output: 馓
Ruby:
char = "\u{9993}"
puts char # Output: 馓
Rust:
let c = '\u{9993}';
println!("{}", c); // Output: 馓
Go:
char := '\u9993'
fmt.Printf("%c\n", char) // Output: 馓
CSS:
/* CSS content property */
.element::before {
content: "\009993"; /* 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=%E9%A6%93
MD5:
d4232f670470720233677c0963f06f64
SHA1:
1113d30e0ed0bda5217352b65e6c12a785938186
Base64:
6aaT