C:
char c = '\u7FB4';
printf("%c\n", c); // Output: 羴
JavaScript:
const char = '\u7FB4';
console.log(char); // Output: 羴
Java:
char c = '\u7FB4';
System.out.println(c); // Output: 羴
JSON:
{"text": "\u7FB4"} // Value: 羴
Python:
char = '\u7FB4'
print(char) # Output: 羴
Perl:
my $char = "\x{7FB4}";
print $char; # Output: 羴
PHP:
$char = "\x{7FB4}";
echo $char; // Output: 羴
Ruby:
char = "\u{7FB4}"
puts char # Output: 羴
Rust:
let c = '\u{7FB4}';
println!("{}", c); // Output: 羴
Go:
char := '\u7FB4'
fmt.Printf("%c\n", char) // Output: 羴
CSS:
/* CSS content property */
.element::before {
content: "\007FB4"; /* 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%B4
MD5:
4ec528d8c47167801f0d355b88c6219a
SHA1:
777b2a81a99f68d46d46a401ea19871d376261d1
Base64:
5760