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