C:
char c = '\u2909';
printf("%c\n", c); // Output: ⤉
JavaScript:
const char = '\u2909';
console.log(char); // Output: ⤉
Java:
char c = '\u2909';
System.out.println(c); // Output: ⤉
JSON:
{"text": "\u2909"} // Value: ⤉
Python:
char = '\u2909'
print(char) # Output: ⤉
Perl:
my $char = "\x{2909}";
print $char; # Output: ⤉
PHP:
$char = "\x{2909}";
echo $char; // Output: ⤉
Ruby:
char = "\u{2909}"
puts char # Output: ⤉
Rust:
let c = '\u{2909}';
println!("{}", c); // Output: ⤉
Go:
char := '\u2909'
fmt.Printf("%c\n", char) // Output: ⤉
CSS:
/* CSS content property */
.element::before {
content: "\002909"; /* 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%89
MD5:
76943a52584a7293a215d254411f8ba8
SHA1:
d296adc519cf8ac653d1fc4471db0c174199af55
Base64:
4qSJ