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