C:
char c = '\u5346';
printf("%c\n", c); // Output: 卆
JavaScript:
const char = '\u5346';
console.log(char); // Output: 卆
Java:
char c = '\u5346';
System.out.println(c); // Output: 卆
JSON:
{"text": "\u5346"} // Value: 卆
Python:
char = '\u5346'
print(char) # Output: 卆
Perl:
my $char = "\x{5346}";
print $char; # Output: 卆
PHP:
$char = "\x{5346}";
echo $char; // Output: 卆
Ruby:
char = "\u{5346}"
puts char # Output: 卆
Rust:
let c = '\u{5346}';
println!("{}", c); // Output: 卆
Go:
char := '\u5346'
fmt.Printf("%c\n", char) // Output: 卆
CSS:
/* CSS content property */
.element::before {
content: "\005346"; /* 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%86
MD5:
6a1c22a86dd4b51c3978ee19328f10f0
SHA1:
c93e6183acf752259d30b7b87bc0f7230e26b571
Base64:
5Y2G