Unicode Finder

"⟿" U+27FF(LONG RIGHTWARDS SQUIGGLE ARROW)

U+27FF
Block Name
Supplemental Arrows-A
Name
LONG RIGHTWARDS SQUIGGLE ARROW

Programming

C
\u27FF
JavaScript
\u27FF
Java
\u27FF
Json
\u27FF
Python
\u27FF
Perl
\x{27FF}
PHP
\x{27FF}
Ruby
\u{27FF}
Rust
\u{27FF}
Go
\u27FF

Web

CSS
\0027FF
HtmlDecimal
⟿
HtmlHexadecimal
⟿
Url
%E2%9F%BF

Code

MD5
2adf4239f04eae4ecff241ffb0c92c67
Sha1
2683a9b5d4f177ad84ffc4c5c1a85e405661628a
Base64
4p+/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u27FF';
console.log(char);  // Output: ⟿

Java:

char c = '\u27FF';
System.out.println(c);  // Output: ⟿

JSON:

{"text": "\u27FF"}  // Value: ⟿

Python:

char = '\u27FF'
print(char)  # Output: ⟿

Perl:

my $char = "\x{27FF}";
print $char;  # Output: ⟿

PHP:

$char = "\x{27FF}";
echo $char;  // Output: ⟿

Ruby:

char = "\u{27FF}"
puts char  # Output: ⟿

Rust:

let c = '\u{27FF}';
println!("{}", c);  // Output: ⟿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0027FF";  /* Display: ⟿ */
}

HTML Decimal:

<p>HTML decimal: &#10239;</p>  <!-- Display: ⟿ -->

HTML Hexadecimal:

<p>HTML hex: &#x27FF;</p>  <!-- Display: ⟿ -->

URL Encoding:

// ⟿ URL encoding
https://unicodefinder.com/search.php?query=%E2%9F%BF

Encodings

MD5:

2adf4239f04eae4ecff241ffb0c92c67

SHA1:

2683a9b5d4f177ad84ffc4c5c1a85e405661628a

Base64:

4p+/