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