C:
char c = '\u7F93';
printf("%c\n", c); // Output: 羓
JavaScript:
const char = '\u7F93';
console.log(char); // Output: 羓
Java:
char c = '\u7F93';
System.out.println(c); // Output: 羓
JSON:
{"text": "\u7F93"} // Value: 羓
Python:
char = '\u7F93'
print(char) # Output: 羓
Perl:
my $char = "\x{7F93}";
print $char; # Output: 羓
PHP:
$char = "\x{7F93}";
echo $char; // Output: 羓
Ruby:
char = "\u{7F93}"
puts char # Output: 羓
Rust:
let c = '\u{7F93}';
println!("{}", c); // Output: 羓
Go:
char := '\u7F93'
fmt.Printf("%c\n", char) // Output: 羓
CSS:
/* CSS content property */
.element::before {
content: "\007F93"; /* 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=%E7%BE%93
MD5:
683a501855189e18ae7aff02c6d74c08
SHA1:
d7236735a27978aef98bcf6ec7d7fa10458b0dd4
Base64:
576T