C:
char c = '\u7FB5';
printf("%c\n", c); // Output: 羵
JavaScript:
const char = '\u7FB5';
console.log(char); // Output: 羵
Java:
char c = '\u7FB5';
System.out.println(c); // Output: 羵
JSON:
{"text": "\u7FB5"} // Value: 羵
Python:
char = '\u7FB5'
print(char) # Output: 羵
Perl:
my $char = "\x{7FB5}";
print $char; # Output: 羵
PHP:
$char = "\x{7FB5}";
echo $char; // Output: 羵
Ruby:
char = "\u{7FB5}"
puts char # Output: 羵
Rust:
let c = '\u{7FB5}';
println!("{}", c); // Output: 羵
Go:
char := '\u7FB5'
fmt.Printf("%c\n", char) // Output: 羵
CSS:
/* CSS content property */
.element::before {
content: "\007FB5"; /* 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%B5
MD5:
10a32663a3cefd2c1362b6744021031f
SHA1:
40d030f8f836dc850a248a21d557af1a8cf4b633
Base64:
5761