C:
char c = '\u5BC3';
printf("%c\n", c); // Output: 寃
JavaScript:
const char = '\u5BC3';
console.log(char); // Output: 寃
Java:
char c = '\u5BC3';
System.out.println(c); // Output: 寃
JSON:
{"text": "\u5BC3"} // Value: 寃
Python:
char = '\u5BC3'
print(char) # Output: 寃
Perl:
my $char = "\x{5BC3}";
print $char; # Output: 寃
PHP:
$char = "\x{5BC3}";
echo $char; // Output: 寃
Ruby:
char = "\u{5BC3}"
puts char # Output: 寃
Rust:
let c = '\u{5BC3}';
println!("{}", c); // Output: 寃
Go:
char := '\u5BC3'
fmt.Printf("%c\n", char) // Output: 寃
CSS:
/* CSS content property */
.element::before {
content: "\005BC3"; /* 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%AF%83
MD5:
a281a9a75c632302c4db238a6456ad1a
SHA1:
92b3ddb099224abbfa3067d4fdeb9c87da619a5a
Base64:
5a+D