Unicode Finder

"⥁" U+2941(CLOCKWISE CLOSED CIRCLE ARROW)

U+2941
Block Name
Supplemental Arrows-B
Name
CLOCKWISE CLOSED CIRCLE ARROW

Programming

C
\u2941
JavaScript
\u2941
Java
\u2941
Json
\u2941
Python
\u2941
Perl
\x{2941}
PHP
\x{2941}
Ruby
\u{2941}
Rust
\u{2941}
Go
\u2941

Web

CSS
\002941
HtmlDecimal
⥁
HtmlHexadecimal
⥁
Url
%E2%A5%81

Code

MD5
adc664751e35639e7927eeb75cb7e511
Sha1
15c18ab6faf5bf9ceaff508dff273e2e99271f1f
Base64
4qWB

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2941';
console.log(char);  // Output: ⥁

Java:

char c = '\u2941';
System.out.println(c);  // Output: ⥁

JSON:

{"text": "\u2941"}  // Value: ⥁

Python:

char = '\u2941'
print(char)  # Output: ⥁

Perl:

my $char = "\x{2941}";
print $char;  # Output: ⥁

PHP:

$char = "\x{2941}";
echo $char;  // Output: ⥁

Ruby:

char = "\u{2941}"
puts char  # Output: ⥁

Rust:

let c = '\u{2941}';
println!("{}", c);  // Output: ⥁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002941";  /* Display: ⥁ */
}

HTML Decimal:

<p>HTML decimal: &#10561;</p>  <!-- Display: ⥁ -->

HTML Hexadecimal:

<p>HTML hex: &#x2941;</p>  <!-- Display: ⥁ -->

URL Encoding:

// ⥁ URL encoding
https://unicodefinder.com/search.php?query=%E2%A5%81

Encodings

MD5:

adc664751e35639e7927eeb75cb7e511

SHA1:

15c18ab6faf5bf9ceaff508dff273e2e99271f1f

Base64:

4qWB