C:
char c = '\u5F44';
printf("%c\n", c); // Output: 彄
JavaScript:
const char = '\u5F44';
console.log(char); // Output: 彄
Java:
char c = '\u5F44';
System.out.println(c); // Output: 彄
JSON:
{"text": "\u5F44"} // Value: 彄
Python:
char = '\u5F44'
print(char) # Output: 彄
Perl:
my $char = "\x{5F44}";
print $char; # Output: 彄
PHP:
$char = "\x{5F44}";
echo $char; // Output: 彄
Ruby:
char = "\u{5F44}"
puts char # Output: 彄
Rust:
let c = '\u{5F44}';
println!("{}", c); // Output: 彄
Go:
char := '\u5F44'
fmt.Printf("%c\n", char) // Output: 彄
CSS:
/* CSS content property */
.element::before {
content: "\005F44"; /* 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=%E5%BD%84
MD5:
51b37da5cc67d14d5fded53c108fb76f
SHA1:
ade8a5d985b6dfec1bb8db463df52f23c6be4733
Base64:
5b2E