C:
char c = '\u5F42';
printf("%c\n", c); // Output: 彂
JavaScript:
const char = '\u5F42';
console.log(char); // Output: 彂
Java:
char c = '\u5F42';
System.out.println(c); // Output: 彂
JSON:
{"text": "\u5F42"} // Value: 彂
Python:
char = '\u5F42'
print(char) # Output: 彂
Perl:
my $char = "\x{5F42}";
print $char; # Output: 彂
PHP:
$char = "\x{5F42}";
echo $char; // Output: 彂
Ruby:
char = "\u{5F42}"
puts char # Output: 彂
Rust:
let c = '\u{5F42}';
println!("{}", c); // Output: 彂
Go:
char := '\u5F42'
fmt.Printf("%c\n", char) // Output: 彂
CSS:
/* CSS content property */
.element::before {
content: "\005F42"; /* 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%82
MD5:
014f26825d00601db1ab18a8be0d1fde
SHA1:
cf28f70ed4bf8bc2f55b392a9ed59266129afe1c
Base64:
5b2C