Unicode Finder

"⮰" U+2BB0(RIBBON ARROW DOWN LEFT)

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

Programming

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

Web

CSS
\002BB0
HtmlDecimal
⮰
HtmlHexadecimal
⮰
Url
%E2%AE%B0

Code

MD5
638f5c0180cdfa407ee6d19417e2182f
Sha1
eb591173702d20d03adb7dfb547665e203b5730f
Base64
4q6w

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2BB0';
console.log(char);  // Output: ⮰

Java:

char c = '\u2BB0';
System.out.println(c);  // Output: ⮰

JSON:

{"text": "\u2BB0"}  // Value: ⮰

Python:

char = '\u2BB0'
print(char)  # Output: ⮰

Perl:

my $char = "\x{2BB0}";
print $char;  # Output: ⮰

PHP:

$char = "\x{2BB0}";
echo $char;  // Output: ⮰

Ruby:

char = "\u{2BB0}"
puts char  # Output: ⮰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11184;</p>  <!-- Display: ⮰ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BB0;</p>  <!-- Display: ⮰ -->

URL Encoding:

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

Encodings

MD5:

638f5c0180cdfa407ee6d19417e2182f

SHA1:

eb591173702d20d03adb7dfb547665e203b5730f

Base64:

4q6w