Unicode Finder

"⮳" U+2BB3(RIBBON ARROW UP RIGHT)

U+2BB3
Block Name
Miscellaneous Symbols and Arrows
Name
RIBBON ARROW UP RIGHT

Programming

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

Web

CSS
\002BB3
HtmlDecimal
⮳
HtmlHexadecimal
⮳
Url
%E2%AE%B3

Code

MD5
617faccd8ed24225fe1df62982bb9833
Sha1
df12eaa332fdfe4a766e6dd4cd382753a557943a
Base64
4q6z

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2BB3';
console.log(char);  // Output: ⮳

Java:

char c = '\u2BB3';
System.out.println(c);  // Output: ⮳

JSON:

{"text": "\u2BB3"}  // Value: ⮳

Python:

char = '\u2BB3'
print(char)  # Output: ⮳

Perl:

my $char = "\x{2BB3}";
print $char;  # Output: ⮳

PHP:

$char = "\x{2BB3}";
echo $char;  // Output: ⮳

Ruby:

char = "\u{2BB3}"
puts char  # Output: ⮳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11187;</p>  <!-- Display: ⮳ -->

HTML Hexadecimal:

<p>HTML hex: &#x2BB3;</p>  <!-- Display: ⮳ -->

URL Encoding:

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

Encodings

MD5:

617faccd8ed24225fe1df62982bb9833

SHA1:

df12eaa332fdfe4a766e6dd4cd382753a557943a

Base64:

4q6z