Unicode Finder

"⤣" U+2923(NORTH WEST ARROW WITH HOOK)

U+2923
Block Name
Supplemental Arrows-B
Name
NORTH WEST ARROW WITH HOOK

Programming

C
\u2923
JavaScript
\u2923
Java
\u2923
Json
\u2923
Python
\u2923
Perl
\x{2923}
PHP
\x{2923}
Ruby
\u{2923}
Rust
\u{2923}
Go
\u2923

Web

CSS
\002923
HtmlDecimal
⤣
HtmlHexadecimal
⤣
Url
%E2%A4%A3

Code

MD5
d9064a13b8a4ef3f493d800d91775686
Sha1
287a3218aeffa03ad71e21fcbf92019359182e46
Base64
4qSj

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2923';
console.log(char);  // Output: ⤣

Java:

char c = '\u2923';
System.out.println(c);  // Output: ⤣

JSON:

{"text": "\u2923"}  // Value: ⤣

Python:

char = '\u2923'
print(char)  # Output: ⤣

Perl:

my $char = "\x{2923}";
print $char;  # Output: ⤣

PHP:

$char = "\x{2923}";
echo $char;  // Output: ⤣

Ruby:

char = "\u{2923}"
puts char  # Output: ⤣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002923";  /* Display: ⤣ */
}

HTML Decimal:

<p>HTML decimal: &#10531;</p>  <!-- Display: ⤣ -->

HTML Hexadecimal:

<p>HTML hex: &#x2923;</p>  <!-- Display: ⤣ -->

URL Encoding:

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

Encodings

MD5:

d9064a13b8a4ef3f493d800d91775686

SHA1:

287a3218aeffa03ad71e21fcbf92019359182e46

Base64:

4qSj