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