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