Unicode Finder

"⥬" U+296C(RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH)

U+296C
Block Name
Supplemental Arrows-B
Name
RIGHTWARDS HARPOON WITH BARB UP ABOVE LONG DASH

Programming

C
\u296C
JavaScript
\u296C
Java
\u296C
Json
\u296C
Python
\u296C
Perl
\x{296C}
PHP
\x{296C}
Ruby
\u{296C}
Rust
\u{296C}
Go
\u296C

Web

CSS
\00296C
HtmlDecimal
⥬
HtmlHexadecimal
⥬
Url
%E2%A5%AC

Code

MD5
15cc07de2f9700f3c017f456c0ce3540
Sha1
9dbc9edaf503cb011742d91f089998a86b17d74c
Base64
4qWs

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u296C';
console.log(char);  // Output: ⥬

Java:

char c = '\u296C';
System.out.println(c);  // Output: ⥬

JSON:

{"text": "\u296C"}  // Value: ⥬

Python:

char = '\u296C'
print(char)  # Output: ⥬

Perl:

my $char = "\x{296C}";
print $char;  # Output: ⥬

PHP:

$char = "\x{296C}";
echo $char;  // Output: ⥬

Ruby:

char = "\u{296C}"
puts char  # Output: ⥬

Rust:

let c = '\u{296C}';
println!("{}", c);  // Output: ⥬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00296C";  /* Display: ⥬ */
}

HTML Decimal:

<p>HTML decimal: &#10604;</p>  <!-- Display: ⥬ -->

HTML Hexadecimal:

<p>HTML hex: &#x296C;</p>  <!-- Display: ⥬ -->

URL Encoding:

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

Encodings

MD5:

15cc07de2f9700f3c017f456c0ce3540

SHA1:

9dbc9edaf503cb011742d91f089998a86b17d74c

Base64:

4qWs