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