Unicode Finder

"⮞" U+2B9E(BLACK RIGHTWARDS EQUILATERAL ARROWHEAD)

U+2B9E
Block Name
Miscellaneous Symbols and Arrows
Name
BLACK RIGHTWARDS EQUILATERAL ARROWHEAD

Programming

C
\u2B9E
JavaScript
\u2B9E
Java
\u2B9E
Json
\u2B9E
Python
\u2B9E
Perl
\x{2B9E}
PHP
\x{2B9E}
Ruby
\u{2B9E}
Rust
\u{2B9E}
Go
\u2B9E

Web

CSS
\002B9E
HtmlDecimal
⮞
HtmlHexadecimal
⮞
Url
%E2%AE%9E

Code

MD5
8d63c4c883ebda5be343bbdf9a5dee0e
Sha1
b6c89c9f199c1081de4f11093e4e05c81814e37a
Base64
4q6e

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2B9E';
console.log(char);  // Output: ⮞

Java:

char c = '\u2B9E';
System.out.println(c);  // Output: ⮞

JSON:

{"text": "\u2B9E"}  // Value: ⮞

Python:

char = '\u2B9E'
print(char)  # Output: ⮞

Perl:

my $char = "\x{2B9E}";
print $char;  # Output: ⮞

PHP:

$char = "\x{2B9E}";
echo $char;  // Output: ⮞

Ruby:

char = "\u{2B9E}"
puts char  # Output: ⮞

Rust:

let c = '\u{2B9E}';
println!("{}", c);  // Output: ⮞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002B9E";  /* Display: ⮞ */
}

HTML Decimal:

<p>HTML decimal: &#11166;</p>  <!-- Display: ⮞ -->

HTML Hexadecimal:

<p>HTML hex: &#x2B9E;</p>  <!-- Display: ⮞ -->

URL Encoding:

// ⮞ URL encoding
https://unicodefinder.com/search.php?query=%E2%AE%9E

Encodings

MD5:

8d63c4c883ebda5be343bbdf9a5dee0e

SHA1:

b6c89c9f199c1081de4f11093e4e05c81814e37a

Base64:

4q6e