Unicode Finder

"⊓" U+2293(SQUARE CAP)

U+2293
Block Name
Mathematical Operators
Name
SQUARE CAP

Programming

C
\u2293
JavaScript
\u2293
Java
\u2293
Json
\u2293
Python
\u2293
Perl
\x{2293}
PHP
\x{2293}
Ruby
\u{2293}
Rust
\u{2293}
Go
\u2293

Web

CSS
\002293
HtmlDecimal
⊓
HtmlHexadecimal
⊓
Url
%E2%8A%93

Code

MD5
d6afc7788bb55f59b10df1f1efb43922
Sha1
2c1d586fb04ff6500d32f9faf479ff5d8ebc4472
Base64
4oqT

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2293';
console.log(char);  // Output: ⊓

Java:

char c = '\u2293';
System.out.println(c);  // Output: ⊓

JSON:

{"text": "\u2293"}  // Value: ⊓

Python:

char = '\u2293'
print(char)  # Output: ⊓

Perl:

my $char = "\x{2293}";
print $char;  # Output: ⊓

PHP:

$char = "\x{2293}";
echo $char;  // Output: ⊓

Ruby:

char = "\u{2293}"
puts char  # Output: ⊓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002293";  /* Display: ⊓ */
}

HTML Decimal:

<p>HTML decimal: &#8851;</p>  <!-- Display: ⊓ -->

HTML Hexadecimal:

<p>HTML hex: &#x2293;</p>  <!-- Display: ⊓ -->

URL Encoding:

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

Encodings

MD5:

d6afc7788bb55f59b10df1f1efb43922

SHA1:

2c1d586fb04ff6500d32f9faf479ff5d8ebc4472

Base64:

4oqT