Unicode Finder

"⤓" U+2913(DOWNWARDS ARROW TO BAR)

U+2913
Block Name
Supplemental Arrows-B
Name
DOWNWARDS ARROW TO BAR

Programming

C
\u2913
JavaScript
\u2913
Java
\u2913
Json
\u2913
Python
\u2913
Perl
\x{2913}
PHP
\x{2913}
Ruby
\u{2913}
Rust
\u{2913}
Go
\u2913

Web

CSS
\002913
HtmlDecimal
⤓
HtmlHexadecimal
⤓
Url
%E2%A4%93

Code

MD5
fa8cc476049dcd5500c8a36b9baa5cd7
Sha1
8bf8983ecf4e1d28a437d43c6ac8675af36e6db2
Base64
4qST

Usage Examples

Programming Languages

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: ⤓

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002913";  /* Display: ⤓ */
}

HTML Decimal:

<p>HTML decimal: &#10515;</p>  <!-- Display: ⤓ -->

HTML Hexadecimal:

<p>HTML hex: &#x2913;</p>  <!-- Display: ⤓ -->

URL Encoding:

// ⤓ URL encoding
https://unicodefinder.com/search.php?query=%E2%A4%93

Encodings

MD5:

fa8cc476049dcd5500c8a36b9baa5cd7

SHA1:

8bf8983ecf4e1d28a437d43c6ac8675af36e6db2

Base64:

4qST