Unicode Finder

"⎒" U+2392(PASSIVE-PULL-UP-OUTPUT SYMBOL)

U+2392
Blokknavn
Miscellaneous Technical
Navn
PASSIVE-PULL-UP-OUTPUT SYMBOL

Programming

C
\u2392
JavaScript
\u2392
Java
\u2392
Json
\u2392
Python
\u2392
Perl
\x{2392}
PHP
\x{2392}
Ruby
\u{2392}
Rust
\u{2392}
Go
\u2392

Web

CSS
\002392
HtmlDecimal
⎒
HtmlHexadecimal
⎒
Url
%E2%8E%92

Code

MD5
a7b220009c2f99975de1d5a653d7f18f
Sha1
cf228923713b19b57faec4ec8daf93c0267e18a1
Base64
4o6S

Brukseksempler

Programming Languages

C:

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

JavaScript:

const char = '\u2392';
console.log(char);  // Output: ⎒

Java:

char c = '\u2392';
System.out.println(c);  // Output: ⎒

JSON:

{"text": "\u2392"}  // Value: ⎒

Python:

char = '\u2392'
print(char)  # Output: ⎒

Perl:

my $char = "\x{2392}";
print $char;  # Output: ⎒

PHP:

$char = "\x{2392}";
echo $char;  // Output: ⎒

Ruby:

char = "\u{2392}"
puts char  # Output: ⎒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002392";  /* Display: ⎒ */
}

HTML Decimal:

<p>HTML decimal: &#9106;</p>  <!-- Display: ⎒ -->

HTML Hexadecimal:

<p>HTML hex: &#x2392;</p>  <!-- Display: ⎒ -->

URL Encoding:

// ⎒ URL encoding
https://unicodefinder.com/search.php?query=%E2%8E%92

Encodings

MD5:

a7b220009c2f99975de1d5a653d7f18f

SHA1:

cf228923713b19b57faec4ec8daf93c0267e18a1

Base64:

4o6S