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