C:
char c = '\u4FAA';
printf("%c\n", c); // Output: 侪
JavaScript:
const char = '\u4FAA';
console.log(char); // Output: 侪
Java:
char c = '\u4FAA';
System.out.println(c); // Output: 侪
JSON:
{"text": "\u4FAA"} // Value: 侪
Python:
char = '\u4FAA'
print(char) # Output: 侪
Perl:
my $char = "\x{4FAA}";
print $char; # Output: 侪
PHP:
$char = "\x{4FAA}";
echo $char; // Output: 侪
Ruby:
char = "\u{4FAA}"
puts char # Output: 侪
Rust:
let c = '\u{4FAA}';
println!("{}", c); // Output: 侪
Go:
char := '\u4FAA'
fmt.Printf("%c\n", char) // Output: 侪
CSS:
/* CSS content property */
.element::before {
content: "\004FAA"; /* 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=%E4%BE%AA
MD5:
fe75c0c4b4ff2ed5827e5538d51799cd
SHA1:
1d6d1496f9263f38092c9c80c3211e65322e5803
Base64:
5L6q