Unicode Finder

"⦔" U+2994(RIGHT ARC GREATER-THAN BRACKET)

U+2994
Block Name
Miscellaneous Mathematical Symbols-B
Name
RIGHT ARC GREATER-THAN BRACKET

Programming

C
\u2994
JavaScript
\u2994
Java
\u2994
Json
\u2994
Python
\u2994
Perl
\x{2994}
PHP
\x{2994}
Ruby
\u{2994}
Rust
\u{2994}
Go
\u2994

Web

CSS
\002994
HtmlDecimal
⦔
HtmlHexadecimal
⦔
Url
%E2%A6%94

Code

MD5
b19d89765758c6a107ff6593bb205a92
Sha1
a543126f5e66e1f7e9466d738e66f6381e001e77
Base64
4qaU

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2994';
console.log(char);  // Output: ⦔

Java:

char c = '\u2994';
System.out.println(c);  // Output: ⦔

JSON:

{"text": "\u2994"}  // Value: ⦔

Python:

char = '\u2994'
print(char)  # Output: ⦔

Perl:

my $char = "\x{2994}";
print $char;  # Output: ⦔

PHP:

$char = "\x{2994}";
echo $char;  // Output: ⦔

Ruby:

char = "\u{2994}"
puts char  # Output: ⦔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002994";  /* Display: ⦔ */
}

HTML Decimal:

<p>HTML decimal: &#10644;</p>  <!-- Display: ⦔ -->

HTML Hexadecimal:

<p>HTML hex: &#x2994;</p>  <!-- Display: ⦔ -->

URL Encoding:

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

Encodings

MD5:

b19d89765758c6a107ff6593bb205a92

SHA1:

a543126f5e66e1f7e9466d738e66f6381e001e77

Base64:

4qaU