C:
char c = '\u5342';
printf("%c\n", c); // Output: 卂
JavaScript:
const char = '\u5342';
console.log(char); // Output: 卂
Java:
char c = '\u5342';
System.out.println(c); // Output: 卂
JSON:
{"text": "\u5342"} // Value: 卂
Python:
char = '\u5342'
print(char) # Output: 卂
Perl:
my $char = "\x{5342}";
print $char; # Output: 卂
PHP:
$char = "\x{5342}";
echo $char; // Output: 卂
Ruby:
char = "\u{5342}"
puts char # Output: 卂
Rust:
let c = '\u{5342}';
println!("{}", c); // Output: 卂
Go:
char := '\u5342'
fmt.Printf("%c\n", char) // Output: 卂
CSS:
/* CSS content property */
.element::before {
content: "\005342"; /* 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%8D%82
MD5:
0c39cd8ad95500f39513df2623707dd4
SHA1:
7db51184401b8e8eac652ab44350b6cbcf95c8f1
Base64:
5Y2C