Unicode Finder

"⮶" U+2BB6(RIBBON ARROW LEFT DOWN)

U+2BB6
Block Name
Miscellaneous Symbols and Arrows
Name
RIBBON ARROW LEFT DOWN

Programming

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

Web

CSS
\002BB6
HtmlDecimal
⮶
HtmlHexadecimal
⮶
Url
%E2%AE%B6

Code

MD5
494baf8d78e49da8ce88d5333c74e348
Sha1
82d63198db34776dfc73cdcce7d2f29fdcb8afc9
Base64
4q62

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2BB6';
console.log(char);  // Output: ⮶

Java:

char c = '\u2BB6';
System.out.println(c);  // Output: ⮶

JSON:

{"text": "\u2BB6"}  // Value: ⮶

Python:

char = '\u2BB6'
print(char)  # Output: ⮶

Perl:

my $char = "\x{2BB6}";
print $char;  # Output: ⮶

PHP:

$char = "\x{2BB6}";
echo $char;  // Output: ⮶

Ruby:

char = "\u{2BB6}"
puts char  # Output: ⮶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11190;</p>  <!-- Display: ⮶ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BB6;</p>  <!-- Display: ⮶ -->

URL Encoding:

// ⮶ URL encoding
https://unicodefinder.com/search.php?query=%E2%AE%B6

Encodings

MD5:

494baf8d78e49da8ce88d5333c74e348

SHA1:

82d63198db34776dfc73cdcce7d2f29fdcb8afc9

Base64:

4q62