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