Unicode Finder

"⮔" U+2B94(FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE)

U+2B94
Block Name
Miscellaneous Symbols and Arrows
Name
FOUR CORNER ARROWS CIRCLING ANTICLOCKWISE

Programming

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

Web

CSS
\002B94
HtmlDecimal
⮔
HtmlHexadecimal
⮔
Url
%E2%AE%94

Code

MD5
cf20c45a20819b2903d0522223e38d32
Sha1
7d843e510e52487f10137e1ad4bf56c4665eda18
Base64
4q6U

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2B94';
console.log(char);  // Output: ⮔

Java:

char c = '\u2B94';
System.out.println(c);  // Output: ⮔

JSON:

{"text": "\u2B94"}  // Value: ⮔

Python:

char = '\u2B94'
print(char)  # Output: ⮔

Perl:

my $char = "\x{2B94}";
print $char;  # Output: ⮔

PHP:

$char = "\x{2B94}";
echo $char;  // Output: ⮔

Ruby:

char = "\u{2B94}"
puts char  # Output: ⮔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11156;</p>  <!-- Display: ⮔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2B94;</p>  <!-- Display: ⮔ -->

URL Encoding:

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

Encodings

MD5:

cf20c45a20819b2903d0522223e38d32

SHA1:

7d843e510e52487f10137e1ad4bf56c4665eda18

Base64:

4q6U