Unicode Finder

"⤢" U+2922(NORTH EAST AND SOUTH WEST ARROW)

U+2922
Block Name
Supplemental Arrows-B
Name
NORTH EAST AND SOUTH WEST ARROW

Programming

C
\u2922
JavaScript
\u2922
Java
\u2922
Json
\u2922
Python
\u2922
Perl
\x{2922}
PHP
\x{2922}
Ruby
\u{2922}
Rust
\u{2922}
Go
\u2922

Web

CSS
\002922
HtmlDecimal
⤢
HtmlHexadecimal
⤢
Url
%E2%A4%A2

Code

MD5
28b793a39c7deb3ba41a015c885824c2
Sha1
00dc03e3a62965b16b3457ed7630581fb2405e6d
Base64
4qSi

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2922';
console.log(char);  // Output: ⤢

Java:

char c = '\u2922';
System.out.println(c);  // Output: ⤢

JSON:

{"text": "\u2922"}  // Value: ⤢

Python:

char = '\u2922'
print(char)  # Output: ⤢

Perl:

my $char = "\x{2922}";
print $char;  # Output: ⤢

PHP:

$char = "\x{2922}";
echo $char;  // Output: ⤢

Ruby:

char = "\u{2922}"
puts char  # Output: ⤢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002922";  /* Display: ⤢ */
}

HTML Decimal:

<p>HTML decimal: &#10530;</p>  <!-- Display: ⤢ -->

HTML Hexadecimal:

<p>HTML hex: &#x2922;</p>  <!-- Display: ⤢ -->

URL Encoding:

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

Encodings

MD5:

28b793a39c7deb3ba41a015c885824c2

SHA1:

00dc03e3a62965b16b3457ed7630581fb2405e6d

Base64:

4qSi