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