Unicode Finder

"↕" U+2195(UP DOWN ARROW)

U+2195
Nama Blok
Arrows
Nama
UP DOWN ARROW

Programming

C
\u2195
JavaScript
\u2195
Java
\u2195
Json
\u2195
Python
\u2195
Perl
\x{2195}
PHP
\x{2195}
Ruby
\u{2195}
Rust
\u{2195}
Go
\u2195

Web

CSS
\002195
HtmlDecimal
↕
HtmlHexadecimal
↕
Url
%E2%86%95

Code

MD5
84b530d40ea6900a6e32f4a1b0a53501
Sha1
e6ddf0065cde5e1188b058183ac498393eb84f13
Base64
4oaV

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u2195';
console.log(char);  // Output: ↕

Java:

char c = '\u2195';
System.out.println(c);  // Output: ↕

JSON:

{"text": "\u2195"}  // Value: ↕

Python:

char = '\u2195'
print(char)  # Output: ↕

Perl:

my $char = "\x{2195}";
print $char;  # Output: ↕

PHP:

$char = "\x{2195}";
echo $char;  // Output: ↕

Ruby:

char = "\u{2195}"
puts char  # Output: ↕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002195";  /* Display: ↕ */
}

HTML Decimal:

<p>HTML decimal: &#8597;</p>  <!-- Display: ↕ -->

HTML Hexadecimal:

<p>HTML hex: &#x2195;</p>  <!-- Display: ↕ -->

URL Encoding:

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

Encodings

MD5:

84b530d40ea6900a6e32f4a1b0a53501

SHA1:

e6ddf0065cde5e1188b058183ac498393eb84f13

Base64:

4oaV