C:
char c = '\u4FA9';
printf("%c\n", c); // Output: 侩
JavaScript:
const char = '\u4FA9';
console.log(char); // Output: 侩
Java:
char c = '\u4FA9';
System.out.println(c); // Output: 侩
JSON:
{"text": "\u4FA9"} // Value: 侩
Python:
char = '\u4FA9'
print(char) # Output: 侩
Perl:
my $char = "\x{4FA9}";
print $char; # Output: 侩
PHP:
$char = "\x{4FA9}";
echo $char; // Output: 侩
Ruby:
char = "\u{4FA9}"
puts char # Output: 侩
Rust:
let c = '\u{4FA9}';
println!("{}", c); // Output: 侩
Go:
char := '\u4FA9'
fmt.Printf("%c\n", char) // Output: 侩
CSS:
/* CSS content property */
.element::before {
content: "\004FA9"; /* 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%A9
MD5:
fb5baef9321e716bb97e143cb0a7918a
SHA1:
980819fe2c3faf7539d07439777d3c68e651071f
Base64:
5L6p