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