Unicode Finder

"⨫" U+2A2B(MINUS SIGN WITH FALLING DOTS)

U+2A2B
Block Name
Supplemental Mathematical Operators
Name
MINUS SIGN WITH FALLING DOTS

Programming

C
\u2A2B
JavaScript
\u2A2B
Java
\u2A2B
Json
\u2A2B
Python
\u2A2B
Perl
\x{2A2B}
PHP
\x{2A2B}
Ruby
\u{2A2B}
Rust
\u{2A2B}
Go
\u2A2B

Web

CSS
\002A2B
HtmlDecimal
⨫
HtmlHexadecimal
⨫
Url
%E2%A8%AB

Code

MD5
8d2fef9c622439cd5f74c76b9da025db
Sha1
e5a98e1383743982683264c53f505f7f9552667b
Base64
4qir

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A2B';
console.log(char);  // Output: ⨫

Java:

char c = '\u2A2B';
System.out.println(c);  // Output: ⨫

JSON:

{"text": "\u2A2B"}  // Value: ⨫

Python:

char = '\u2A2B'
print(char)  # Output: ⨫

Perl:

my $char = "\x{2A2B}";
print $char;  # Output: ⨫

PHP:

$char = "\x{2A2B}";
echo $char;  // Output: ⨫

Ruby:

char = "\u{2A2B}"
puts char  # Output: ⨫

Rust:

let c = '\u{2A2B}';
println!("{}", c);  // Output: ⨫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002A2B";  /* Display: ⨫ */
}

HTML Decimal:

<p>HTML decimal: &#10795;</p>  <!-- Display: ⨫ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A2B;</p>  <!-- Display: ⨫ -->

URL Encoding:

// ⨫ URL encoding
https://unicodefinder.com/search.php?query=%E2%A8%AB

Encodings

MD5:

8d2fef9c622439cd5f74c76b9da025db

SHA1:

e5a98e1383743982683264c53f505f7f9552667b

Base64:

4qir