Unicode Finder

"⤲" U+2932(NORTH WEST ARROW CROSSING NORTH EAST ARROW)

U+2932
Block Name
Supplemental Arrows-B
Name
NORTH WEST ARROW CROSSING NORTH EAST ARROW

Programming

C
\u2932
JavaScript
\u2932
Java
\u2932
Json
\u2932
Python
\u2932
Perl
\x{2932}
PHP
\x{2932}
Ruby
\u{2932}
Rust
\u{2932}
Go
\u2932

Web

CSS
\002932
HtmlDecimal
⤲
HtmlHexadecimal
⤲
Url
%E2%A4%B2

Code

MD5
dc97efaddb1b3b91ee89cd6d2e268f62
Sha1
87cdadcd3e6b0241ad74e5fe0106820a6821741c
Base64
4qSy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2932';
console.log(char);  // Output: ⤲

Java:

char c = '\u2932';
System.out.println(c);  // Output: ⤲

JSON:

{"text": "\u2932"}  // Value: ⤲

Python:

char = '\u2932'
print(char)  # Output: ⤲

Perl:

my $char = "\x{2932}";
print $char;  # Output: ⤲

PHP:

$char = "\x{2932}";
echo $char;  // Output: ⤲

Ruby:

char = "\u{2932}"
puts char  # Output: ⤲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002932";  /* Display: ⤲ */
}

HTML Decimal:

<p>HTML decimal: &#10546;</p>  <!-- Display: ⤲ -->

HTML Hexadecimal:

<p>HTML hex: &#x2932;</p>  <!-- Display: ⤲ -->

URL Encoding:

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

Encodings

MD5:

dc97efaddb1b3b91ee89cd6d2e268f62

SHA1:

87cdadcd3e6b0241ad74e5fe0106820a6821741c

Base64:

4qSy