C:
char c = '\u2914';
printf("%c\n", c); // Output: ⤔
JavaScript:
const char = '\u2914';
console.log(char); // Output: ⤔
Java:
char c = '\u2914';
System.out.println(c); // Output: ⤔
JSON:
{"text": "\u2914"} // Value: ⤔
Python:
char = '\u2914'
print(char) # Output: ⤔
Perl:
my $char = "\x{2914}";
print $char; # Output: ⤔
PHP:
$char = "\x{2914}";
echo $char; // Output: ⤔
Ruby:
char = "\u{2914}"
puts char # Output: ⤔
Rust:
let c = '\u{2914}';
println!("{}", c); // Output: ⤔
Go:
char := '\u2914'
fmt.Printf("%c\n", char) // Output: ⤔
CSS:
/* CSS content property */
.element::before {
content: "\002914"; /* 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%94
MD5:
69cec12b3fa48a5950378d3d33b5fa90
SHA1:
ca0e86f59794cb9b50aeb33b0e3568f861a2d1f4
Base64:
4qSU