Unicode Finder

"⦓" U+2993(LEFT ARC LESS-THAN BRACKET)

U+2993
Block Name
Miscellaneous Mathematical Symbols-B
Name
LEFT ARC LESS-THAN BRACKET

Programming

C
\u2993
JavaScript
\u2993
Java
\u2993
Json
\u2993
Python
\u2993
Perl
\x{2993}
PHP
\x{2993}
Ruby
\u{2993}
Rust
\u{2993}
Go
\u2993

Web

CSS
\002993
HtmlDecimal
⦓
HtmlHexadecimal
⦓
Url
%E2%A6%93

Code

MD5
771c6e95892621060028527bbdb83917
Sha1
39a7ff980b07b823d6f6a25a923557eea2f75fa7
Base64
4qaT

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2993';
console.log(char);  // Output: ⦓

Java:

char c = '\u2993';
System.out.println(c);  // Output: ⦓

JSON:

{"text": "\u2993"}  // Value: ⦓

Python:

char = '\u2993'
print(char)  # Output: ⦓

Perl:

my $char = "\x{2993}";
print $char;  # Output: ⦓

PHP:

$char = "\x{2993}";
echo $char;  // Output: ⦓

Ruby:

char = "\u{2993}"
puts char  # Output: ⦓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002993";  /* Display: ⦓ */
}

HTML Decimal:

<p>HTML decimal: &#10643;</p>  <!-- Display: ⦓ -->

HTML Hexadecimal:

<p>HTML hex: &#x2993;</p>  <!-- Display: ⦓ -->

URL Encoding:

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

Encodings

MD5:

771c6e95892621060028527bbdb83917

SHA1:

39a7ff980b07b823d6f6a25a923557eea2f75fa7

Base64:

4qaT