C:
char c = '\u2923';
printf("%c\n", c); // Output: ⤣
JavaScript:
const char = '\u2923';
console.log(char); // Output: ⤣
Java:
char c = '\u2923';
System.out.println(c); // Output: ⤣
JSON:
{"text": "\u2923"} // Value: ⤣
Python:
char = '\u2923'
print(char) # Output: ⤣
Perl:
my $char = "\x{2923}";
print $char; # Output: ⤣
PHP:
$char = "\x{2923}";
echo $char; // Output: ⤣
Ruby:
char = "\u{2923}"
puts char # Output: ⤣
Rust:
let c = '\u{2923}';
println!("{}", c); // Output: ⤣
Go:
char := '\u2923'
fmt.Printf("%c\n", char) // Output: ⤣
CSS:
/* CSS content property */
.element::before {
content: "\002923"; /* 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%A3
MD5:
d9064a13b8a4ef3f493d800d91775686
SHA1:
287a3218aeffa03ad71e21fcbf92019359182e46
Base64:
4qSj