Unicode Finder

"→" U+2192(RIGHTWARDS ARROW)

U+2192
Nama Blok
Arrows
Nama
RIGHTWARDS ARROW

Programming

C
\u2192
JavaScript
\u2192
Java
\u2192
Json
\u2192
Python
\u2192
Perl
\x{2192}
PHP
\x{2192}
Ruby
\u{2192}
Rust
\u{2192}
Go
\u2192

Web

CSS
\002192
HtmlDecimal
→
HtmlHexadecimal
→
Url
%E2%86%92

Code

MD5
0616fbe77335f9ce9120471a4e77eb61
Sha1
213edd2539ed96e6900bb40abd588edba35566c5
Base64
4oaS

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2192';
console.log(char);  // Output: →

Java:

char c = '\u2192';
System.out.println(c);  // Output: →

JSON:

{"text": "\u2192"}  // Value: →

Python:

char = '\u2192'
print(char)  # Output: →

Perl:

my $char = "\x{2192}";
print $char;  # Output: →

PHP:

$char = "\x{2192}";
echo $char;  // Output: →

Ruby:

char = "\u{2192}"
puts char  # Output: →

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002192";  /* Display: → */
}

HTML Decimal:

<p>HTML decimal: &#8594;</p>  <!-- Display: → -->

HTML Hexadecimal:

<p>HTML hex: &#x2192;</p>  <!-- Display: → -->

URL Encoding:

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

Encodings

MD5:

0616fbe77335f9ce9120471a4e77eb61

SHA1:

213edd2539ed96e6900bb40abd588edba35566c5

Base64:

4oaS