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