Unicode Finder

"⦒" U+2992(RIGHT ANGLE BRACKET WITH DOT)

U+2992
Block Name
Miscellaneous Mathematical Symbols-B
Name
RIGHT ANGLE BRACKET WITH DOT

Programming

C
\u2992
JavaScript
\u2992
Java
\u2992
Json
\u2992
Python
\u2992
Perl
\x{2992}
PHP
\x{2992}
Ruby
\u{2992}
Rust
\u{2992}
Go
\u2992

Web

CSS
\002992
HtmlDecimal
⦒
HtmlHexadecimal
⦒
Url
%E2%A6%92

Code

MD5
17e5adf10c2a63aa17e0764a3946c32c
Sha1
1bb4d4844bf25d77ffcde982643f53b9bdb94e5e
Base64
4qaS

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2992';
console.log(char);  // Output: ⦒

Java:

char c = '\u2992';
System.out.println(c);  // Output: ⦒

JSON:

{"text": "\u2992"}  // Value: ⦒

Python:

char = '\u2992'
print(char)  # Output: ⦒

Perl:

my $char = "\x{2992}";
print $char;  # Output: ⦒

PHP:

$char = "\x{2992}";
echo $char;  // Output: ⦒

Ruby:

char = "\u{2992}"
puts char  # Output: ⦒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002992";  /* Display: ⦒ */
}

HTML Decimal:

<p>HTML decimal: &#10642;</p>  <!-- Display: ⦒ -->

HTML Hexadecimal:

<p>HTML hex: &#x2992;</p>  <!-- Display: ⦒ -->

URL Encoding:

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

Encodings

MD5:

17e5adf10c2a63aa17e0764a3946c32c

SHA1:

1bb4d4844bf25d77ffcde982643f53b9bdb94e5e

Base64:

4qaS