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