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