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