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