C:
char c = '\u2A22';
printf("%c\n", c); // Output: ⨢
JavaScript:
const char = '\u2A22';
console.log(char); // Output: ⨢
Java:
char c = '\u2A22';
System.out.println(c); // Output: ⨢
JSON:
{"text": "\u2A22"} // Value: ⨢
Python:
char = '\u2A22'
print(char) # Output: ⨢
Perl:
my $char = "\x{2A22}";
print $char; # Output: ⨢
PHP:
$char = "\x{2A22}";
echo $char; // Output: ⨢
Ruby:
char = "\u{2A22}"
puts char # Output: ⨢
Rust:
let c = '\u{2A22}';
println!("{}", c); // Output: ⨢
Go:
char := '\u2A22'
fmt.Printf("%c\n", char) // Output: ⨢
CSS:
/* CSS content property */
.element::before {
content: "\002A22"; /* 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%A2
MD5:
4d9164ca60abbf930ce4fbc106b2b913
SHA1:
33dbad12557ee83c0ab03d0e0bfbdb40ed7925ee
Base64:
4qii