Unicode Finder

"⍰" U+2370(APL FUNCTIONAL SYMBOL QUAD QUESTION)

U+2370
Blokknavn
Miscellaneous Technical
Navn
APL FUNCTIONAL SYMBOL QUAD QUESTION

Programming

C
\u2370
JavaScript
\u2370
Java
\u2370
Json
\u2370
Python
\u2370
Perl
\x{2370}
PHP
\x{2370}
Ruby
\u{2370}
Rust
\u{2370}
Go
\u2370

Web

CSS
\002370
HtmlDecimal
⍰
HtmlHexadecimal
⍰
Url
%E2%8D%B0

Code

MD5
0f6f4bce917686fcc5ef53727ce15d57
Sha1
983a913e64945e8a3d7fff2bb6a88937905754fc
Base64
4o2w

Brukseksempler

Programming Languages

C:

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

JavaScript:

const char = '\u2370';
console.log(char);  // Output: ⍰

Java:

char c = '\u2370';
System.out.println(c);  // Output: ⍰

JSON:

{"text": "\u2370"}  // Value: ⍰

Python:

char = '\u2370'
print(char)  # Output: ⍰

Perl:

my $char = "\x{2370}";
print $char;  # Output: ⍰

PHP:

$char = "\x{2370}";
echo $char;  // Output: ⍰

Ruby:

char = "\u{2370}"
puts char  # Output: ⍰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002370";  /* Display: ⍰ */
}

HTML Decimal:

<p>HTML decimal: &#9072;</p>  <!-- Display: ⍰ -->

HTML Hexadecimal:

<p>HTML hex: &#x2370;</p>  <!-- Display: ⍰ -->

URL Encoding:

// ⍰ URL encoding
https://unicodefinder.com/search.php?query=%E2%8D%B0

Encodings

MD5:

0f6f4bce917686fcc5ef53727ce15d57

SHA1:

983a913e64945e8a3d7fff2bb6a88937905754fc

Base64:

4o2w