Unicode Finder

"⥐" U+2950(LEFT BARB DOWN RIGHT BARB DOWN HARPOON)

U+2950
Block Name
Supplemental Arrows-B
Name
LEFT BARB DOWN RIGHT BARB DOWN HARPOON

Programming

C
\u2950
JavaScript
\u2950
Java
\u2950
Json
\u2950
Python
\u2950
Perl
\x{2950}
PHP
\x{2950}
Ruby
\u{2950}
Rust
\u{2950}
Go
\u2950

Web

CSS
\002950
HtmlDecimal
⥐
HtmlHexadecimal
⥐
Url
%E2%A5%90

Code

MD5
dc78e454a0f6c2ad8d5db9aeff4c043e
Sha1
c932f24ca295f6330c49d13312610c5d7dd46e1c
Base64
4qWQ

Usage Examples

Programming Languages

C:

char c = '\u2950';
printf("%c\n", c);  // Output: ⥐

JavaScript:

const char = '\u2950';
console.log(char);  // Output: ⥐

Java:

char c = '\u2950';
System.out.println(c);  // Output: ⥐

JSON:

{"text": "\u2950"}  // Value: ⥐

Python:

char = '\u2950'
print(char)  # Output: ⥐

Perl:

my $char = "\x{2950}";
print $char;  # Output: ⥐

PHP:

$char = "\x{2950}";
echo $char;  // Output: ⥐

Ruby:

char = "\u{2950}"
puts char  # Output: ⥐

Rust:

let c = '\u{2950}';
println!("{}", c);  // Output: ⥐

Go:

char := '\u2950'
fmt.Printf("%c\n", char)  // Output: ⥐

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002950";  /* Display: ⥐ */
}

HTML Decimal:

<p>HTML decimal: &#10576;</p>  <!-- Display: ⥐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2950;</p>  <!-- Display: ⥐ -->

URL Encoding:

// ⥐ URL encoding
https://unicodefinder.com/search.php?query=%E2%A5%90

Encodings

MD5:

dc78e454a0f6c2ad8d5db9aeff4c043e

SHA1:

c932f24ca295f6330c49d13312610c5d7dd46e1c

Base64:

4qWQ