Unicode Finder

"⥣" U+2963(UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT)

U+2963
Block Name
Supplemental Arrows-B
Name
UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT

Programming

C
\u2963
JavaScript
\u2963
Java
\u2963
Json
\u2963
Python
\u2963
Perl
\x{2963}
PHP
\x{2963}
Ruby
\u{2963}
Rust
\u{2963}
Go
\u2963

Web

CSS
\002963
HtmlDecimal
⥣
HtmlHexadecimal
⥣
Url
%E2%A5%A3

Code

MD5
f50047be02906135fa89d9f05d8d5d4b
Sha1
57cbe9d8208469f2bc7ae1a70f4b7494e0d7ec8f
Base64
4qWj

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2963';
console.log(char);  // Output: ⥣

Java:

char c = '\u2963';
System.out.println(c);  // Output: ⥣

JSON:

{"text": "\u2963"}  // Value: ⥣

Python:

char = '\u2963'
print(char)  # Output: ⥣

Perl:

my $char = "\x{2963}";
print $char;  # Output: ⥣

PHP:

$char = "\x{2963}";
echo $char;  // Output: ⥣

Ruby:

char = "\u{2963}"
puts char  # Output: ⥣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002963";  /* Display: ⥣ */
}

HTML Decimal:

<p>HTML decimal: &#10595;</p>  <!-- Display: ⥣ -->

HTML Hexadecimal:

<p>HTML hex: &#x2963;</p>  <!-- Display: ⥣ -->

URL Encoding:

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

Encodings

MD5:

f50047be02906135fa89d9f05d8d5d4b

SHA1:

57cbe9d8208469f2bc7ae1a70f4b7494e0d7ec8f

Base64:

4qWj

© 2025 Unicode Finder

⥣ U+2963 UPWARDS HARPOON WITH BARB LEFT BESIDE UPWARDS HARPOON WITH BARB RIGHT Unicode Character - Unicode Finder

Contact: [email protected]