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