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