Unicode Finder

"⤿" U+293F(LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW)

⤿
U+293F
Block Name
Supplemental Arrows-B
Name
LOWER LEFT SEMICIRCULAR ANTICLOCKWISE ARROW

Programming

C
\u293F
JavaScript
\u293F
Java
\u293F
Json
\u293F
Python
\u293F
Perl
\x{293F}
PHP
\x{293F}
Ruby
\u{293F}
Rust
\u{293F}
Go
\u293F

Web

CSS
\00293F
HtmlDecimal
⤿
HtmlHexadecimal
⤿
Url
%E2%A4%BF

Code

MD5
4a0d0558f8e090b77f4689c0fa95137a
Sha1
9b961e48f836090b88f792a9fd066ab744ef3d71
Base64
4qS/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u293F';
console.log(char);  // Output: ⤿

Java:

char c = '\u293F';
System.out.println(c);  // Output: ⤿

JSON:

{"text": "\u293F"}  // Value: ⤿

Python:

char = '\u293F'
print(char)  # Output: ⤿

Perl:

my $char = "\x{293F}";
print $char;  # Output: ⤿

PHP:

$char = "\x{293F}";
echo $char;  // Output: ⤿

Ruby:

char = "\u{293F}"
puts char  # Output: ⤿

Rust:

let c = '\u{293F}';
println!("{}", c);  // Output: ⤿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00293F";  /* Display: ⤿ */
}

HTML Decimal:

<p>HTML decimal: &#10559;</p>  <!-- Display: ⤿ -->

HTML Hexadecimal:

<p>HTML hex: &#x293F;</p>  <!-- Display: ⤿ -->

URL Encoding:

// ⤿ URL encoding
https://unicodefinder.com/search.php?query=%E2%A4%BF

Encodings

MD5:

4a0d0558f8e090b77f4689c0fa95137a

SHA1:

9b961e48f836090b88f792a9fd066ab744ef3d71

Base64:

4qS/