Unicode Finder

"⦑" U+2991(LEFT ANGLE BRACKET WITH DOT)

U+2991
Block Name
Miscellaneous Mathematical Symbols-B
Name
LEFT ANGLE BRACKET WITH DOT

Programming

C
\u2991
JavaScript
\u2991
Java
\u2991
Json
\u2991
Python
\u2991
Perl
\x{2991}
PHP
\x{2991}
Ruby
\u{2991}
Rust
\u{2991}
Go
\u2991

Web

CSS
\002991
HtmlDecimal
⦑
HtmlHexadecimal
⦑
Url
%E2%A6%91

Code

MD5
551be404bdbe1637a5d05d3e07d5021c
Sha1
b97c4014a0722d2caa3bfc93acf267cd28b702fa
Base64
4qaR

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2991';
console.log(char);  // Output: ⦑

Java:

char c = '\u2991';
System.out.println(c);  // Output: ⦑

JSON:

{"text": "\u2991"}  // Value: ⦑

Python:

char = '\u2991'
print(char)  # Output: ⦑

Perl:

my $char = "\x{2991}";
print $char;  # Output: ⦑

PHP:

$char = "\x{2991}";
echo $char;  // Output: ⦑

Ruby:

char = "\u{2991}"
puts char  # Output: ⦑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002991";  /* Display: ⦑ */
}

HTML Decimal:

<p>HTML decimal: &#10641;</p>  <!-- Display: ⦑ -->

HTML Hexadecimal:

<p>HTML hex: &#x2991;</p>  <!-- Display: ⦑ -->

URL Encoding:

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

Encodings

MD5:

551be404bdbe1637a5d05d3e07d5021c

SHA1:

b97c4014a0722d2caa3bfc93acf267cd28b702fa

Base64:

4qaR