Unicode Finder

"⦄" U+2984(RIGHT WHITE CURLY BRACKET)

U+2984
Block Name
Miscellaneous Mathematical Symbols-B
Name
RIGHT WHITE CURLY BRACKET

Programming

C
\u2984
JavaScript
\u2984
Java
\u2984
Json
\u2984
Python
\u2984
Perl
\x{2984}
PHP
\x{2984}
Ruby
\u{2984}
Rust
\u{2984}
Go
\u2984

Web

CSS
\002984
HtmlDecimal
⦄
HtmlHexadecimal
⦄
Url
%E2%A6%84

Code

MD5
c680a8b800e88da91b29b05483ea25eb
Sha1
a925ac1f206fc9fa7203cbe9510008e8a2f214e9
Base64
4qaE

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2984';
console.log(char);  // Output: ⦄

Java:

char c = '\u2984';
System.out.println(c);  // Output: ⦄

JSON:

{"text": "\u2984"}  // Value: ⦄

Python:

char = '\u2984'
print(char)  # Output: ⦄

Perl:

my $char = "\x{2984}";
print $char;  # Output: ⦄

PHP:

$char = "\x{2984}";
echo $char;  // Output: ⦄

Ruby:

char = "\u{2984}"
puts char  # Output: ⦄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002984";  /* Display: ⦄ */
}

HTML Decimal:

<p>HTML decimal: &#10628;</p>  <!-- Display: ⦄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2984;</p>  <!-- Display: ⦄ -->

URL Encoding:

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

Encodings

MD5:

c680a8b800e88da91b29b05483ea25eb

SHA1:

a925ac1f206fc9fa7203cbe9510008e8a2f214e9

Base64:

4qaE