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