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