C:
char c = '\u5344';
printf("%c\n", c); // Output: 卄
JavaScript:
const char = '\u5344';
console.log(char); // Output: 卄
Java:
char c = '\u5344';
System.out.println(c); // Output: 卄
JSON:
{"text": "\u5344"} // Value: 卄
Python:
char = '\u5344'
print(char) # Output: 卄
Perl:
my $char = "\x{5344}";
print $char; # Output: 卄
PHP:
$char = "\x{5344}";
echo $char; // Output: 卄
Ruby:
char = "\u{5344}"
puts char # Output: 卄
Rust:
let c = '\u{5344}';
println!("{}", c); // Output: 卄
Go:
char := '\u5344'
fmt.Printf("%c\n", char) // Output: 卄
CSS:
/* CSS content property */
.element::before {
content: "\005344"; /* 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%84
MD5:
49e87131f8354959f41daf61a9321bd1
SHA1:
c6139771174b6b476bb94564920c7f08f498c456
Base64:
5Y2E