Unicode Finder

"↙" U+2199(SOUTH WEST ARROW)

U+2199
Nama Blok
Arrows
Nama
SOUTH WEST ARROW

Programming

C
\u2199
JavaScript
\u2199
Java
\u2199
Json
\u2199
Python
\u2199
Perl
\x{2199}
PHP
\x{2199}
Ruby
\u{2199}
Rust
\u{2199}
Go
\u2199

Web

CSS
\002199
HtmlDecimal
↙
HtmlHexadecimal
↙
Url
%E2%86%99

Code

MD5
0c602f0d104cd146851f1bea15095322
Sha1
95ace1187f5d0c8666a79069b7eb41cd7926d4f3
Base64
4oaZ

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2199';
console.log(char);  // Output: ↙

Java:

char c = '\u2199';
System.out.println(c);  // Output: ↙

JSON:

{"text": "\u2199"}  // Value: ↙

Python:

char = '\u2199'
print(char)  # Output: ↙

Perl:

my $char = "\x{2199}";
print $char;  # Output: ↙

PHP:

$char = "\x{2199}";
echo $char;  // Output: ↙

Ruby:

char = "\u{2199}"
puts char  # Output: ↙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002199";  /* Display: ↙ */
}

HTML Decimal:

<p>HTML decimal: &#8601;</p>  <!-- Display: ↙ -->

HTML Hexadecimal:

<p>HTML hex: &#x2199;</p>  <!-- Display: ↙ -->

URL Encoding:

// ↙ URL encoding
https://unicodefinder.com/search.php?query=%E2%86%99

Encodings

MD5:

0c602f0d104cd146851f1bea15095322

SHA1:

95ace1187f5d0c8666a79069b7eb41cd7926d4f3

Base64:

4oaZ