Unicode Finder

"⦘" U+2998(RIGHT BLACK TORTOISE SHELL BRACKET)

U+2998
Block Name
Miscellaneous Mathematical Symbols-B
Name
RIGHT BLACK TORTOISE SHELL BRACKET

Programming

C
\u2998
JavaScript
\u2998
Java
\u2998
Json
\u2998
Python
\u2998
Perl
\x{2998}
PHP
\x{2998}
Ruby
\u{2998}
Rust
\u{2998}
Go
\u2998

Web

CSS
\002998
HtmlDecimal
⦘
HtmlHexadecimal
⦘
Url
%E2%A6%98

Code

MD5
8bf29775ff52ed51b7b99a9c005214db
Sha1
6a3d255d1668803dd99800b5e77cface20b8fa88
Base64
4qaY

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2998';
console.log(char);  // Output: ⦘

Java:

char c = '\u2998';
System.out.println(c);  // Output: ⦘

JSON:

{"text": "\u2998"}  // Value: ⦘

Python:

char = '\u2998'
print(char)  # Output: ⦘

Perl:

my $char = "\x{2998}";
print $char;  # Output: ⦘

PHP:

$char = "\x{2998}";
echo $char;  // Output: ⦘

Ruby:

char = "\u{2998}"
puts char  # Output: ⦘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002998";  /* Display: ⦘ */
}

HTML Decimal:

<p>HTML decimal: &#10648;</p>  <!-- Display: ⦘ -->

HTML Hexadecimal:

<p>HTML hex: &#x2998;</p>  <!-- Display: ⦘ -->

URL Encoding:

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

Encodings

MD5:

8bf29775ff52ed51b7b99a9c005214db

SHA1:

6a3d255d1668803dd99800b5e77cface20b8fa88

Base64:

4qaY