Unicode Finder

"⩿" U+2A7F(LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE)

⩿
U+2A7F
Block Name
Supplemental Mathematical Operators
Name
LESS-THAN OR SLANTED EQUAL TO WITH DOT INSIDE

Programming

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

Web

CSS
\002A7F
HtmlDecimal
⩿
HtmlHexadecimal
⩿
Url
%E2%A9%BF

Code

MD5
1a55ac6c40f51e849704a9fb79925e95
Sha1
76640c63fe17fa0a8baf2261c2a58a6c2b0b7a89
Base64
4qm/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A7F';
console.log(char);  // Output: ⩿

Java:

char c = '\u2A7F';
System.out.println(c);  // Output: ⩿

JSON:

{"text": "\u2A7F"}  // Value: ⩿

Python:

char = '\u2A7F'
print(char)  # Output: ⩿

Perl:

my $char = "\x{2A7F}";
print $char;  # Output: ⩿

PHP:

$char = "\x{2A7F}";
echo $char;  // Output: ⩿

Ruby:

char = "\u{2A7F}"
puts char  # Output: ⩿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10879;</p>  <!-- Display: ⩿ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A7F;</p>  <!-- Display: ⩿ -->

URL Encoding:

// ⩿ URL encoding
https://unicodefinder.com/search.php?query=%E2%A9%BF

Encodings

MD5:

1a55ac6c40f51e849704a9fb79925e95

SHA1:

76640c63fe17fa0a8baf2261c2a58a6c2b0b7a89

Base64:

4qm/