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