Unicode Finder

"⊀" U+2280(DOES NOT PRECEDE)

U+2280
Block Name
Mathematical Operators
Name
DOES NOT PRECEDE

Programming

C
\u2280
JavaScript
\u2280
Java
\u2280
Json
\u2280
Python
\u2280
Perl
\x{2280}
PHP
\x{2280}
Ruby
\u{2280}
Rust
\u{2280}
Go
\u2280

Web

CSS
\002280
HtmlDecimal
⊀
HtmlHexadecimal
⊀
Url
%E2%8A%80

Code

MD5
be81343f21ccdae8d7c29b062c863d3e
Sha1
4018573b0f5d6eed79794167200cbab03b9b5ae7
Base64
4oqA

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2280';
console.log(char);  // Output: ⊀

Java:

char c = '\u2280';
System.out.println(c);  // Output: ⊀

JSON:

{"text": "\u2280"}  // Value: ⊀

Python:

char = '\u2280'
print(char)  # Output: ⊀

Perl:

my $char = "\x{2280}";
print $char;  # Output: ⊀

PHP:

$char = "\x{2280}";
echo $char;  // Output: ⊀

Ruby:

char = "\u{2280}"
puts char  # Output: ⊀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002280";  /* Display: ⊀ */
}

HTML Decimal:

<p>HTML decimal: &#8832;</p>  <!-- Display: ⊀ -->

HTML Hexadecimal:

<p>HTML hex: &#x2280;</p>  <!-- Display: ⊀ -->

URL Encoding:

// ⊀ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%80

Encodings

MD5:

be81343f21ccdae8d7c29b062c863d3e

SHA1:

4018573b0f5d6eed79794167200cbab03b9b5ae7

Base64:

4oqA