Unicode Finder

"⦐" U+2990(RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER)

U+2990
Block Name
Miscellaneous Mathematical Symbols-B
Name
RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER

Programming

C
\u2990
JavaScript
\u2990
Java
\u2990
Json
\u2990
Python
\u2990
Perl
\x{2990}
PHP
\x{2990}
Ruby
\u{2990}
Rust
\u{2990}
Go
\u2990

Web

CSS
\002990
HtmlDecimal
⦐
HtmlHexadecimal
⦐
Url
%E2%A6%90

Code

MD5
a56a508f9e0c329aa5d641e4b5839d38
Sha1
4923fb9f987fb5cdef8e651101684c2dbb5beaa2
Base64
4qaQ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2990';
console.log(char);  // Output: ⦐

Java:

char c = '\u2990';
System.out.println(c);  // Output: ⦐

JSON:

{"text": "\u2990"}  // Value: ⦐

Python:

char = '\u2990'
print(char)  # Output: ⦐

Perl:

my $char = "\x{2990}";
print $char;  # Output: ⦐

PHP:

$char = "\x{2990}";
echo $char;  // Output: ⦐

Ruby:

char = "\u{2990}"
puts char  # Output: ⦐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002990";  /* Display: ⦐ */
}

HTML Decimal:

<p>HTML decimal: &#10640;</p>  <!-- Display: ⦐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2990;</p>  <!-- Display: ⦐ -->

URL Encoding:

// ⦐ URL encoding
https://unicodefinder.com/search.php?query=%E2%A6%90

Encodings

MD5:

a56a508f9e0c329aa5d641e4b5839d38

SHA1:

4923fb9f987fb5cdef8e651101684c2dbb5beaa2

Base64:

4qaQ