C:
char c = '\u2A20';
printf("%c\n", c); // Output: ⨠
JavaScript:
const char = '\u2A20';
console.log(char); // Output: ⨠
Java:
char c = '\u2A20';
System.out.println(c); // Output: ⨠
JSON:
{"text": "\u2A20"} // Value: ⨠
Python:
char = '\u2A20'
print(char) # Output: ⨠
Perl:
my $char = "\x{2A20}";
print $char; # Output: ⨠
PHP:
$char = "\x{2A20}";
echo $char; // Output: ⨠
Ruby:
char = "\u{2A20}"
puts char # Output: ⨠
Rust:
let c = '\u{2A20}';
println!("{}", c); // Output: ⨠
Go:
char := '\u2A20'
fmt.Printf("%c\n", char) // Output: ⨠
CSS:
/* CSS content property */
.element::before {
content: "\002A20"; /* 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=%E2%A8%A0
MD5:
b2078dce55f7f35d8e0ea39414ef3789
SHA1:
244501ff83294e6746e795b20770e68a7003011f
Base64:
4qig