C:
char c = '\u292A';
printf("%c\n", c); // Output: ⤪
JavaScript:
const char = '\u292A';
console.log(char); // Output: ⤪
Java:
char c = '\u292A';
System.out.println(c); // Output: ⤪
JSON:
{"text": "\u292A"} // Value: ⤪
Python:
char = '\u292A'
print(char) # Output: ⤪
Perl:
my $char = "\x{292A}";
print $char; # Output: ⤪
PHP:
$char = "\x{292A}";
echo $char; // Output: ⤪
Ruby:
char = "\u{292A}"
puts char # Output: ⤪
Rust:
let c = '\u{292A}';
println!("{}", c); // Output: ⤪
Go:
char := '\u292A'
fmt.Printf("%c\n", char) // Output: ⤪
CSS:
/* CSS content property */
.element::before {
content: "\00292A"; /* 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%A4%AA
MD5:
5a411ad9301eb5a945c74f7249a4d779
SHA1:
5824e3c198719d78d257d4837bcf6f9cb1fa9722
Base64:
4qSq