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