Unicode Finder

"⨎" U+2A0E(INTEGRAL WITH DOUBLE STROKE)

U+2A0E
Block Name
Supplemental Mathematical Operators
Name
INTEGRAL WITH DOUBLE STROKE

Programming

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

Web

CSS
\002A0E
HtmlDecimal
⨎
HtmlHexadecimal
⨎
Url
%E2%A8%8E

Code

MD5
93ab900124f772ee1073146780666518
Sha1
c91e3cd1bbafdf23d1ea3c7baca3b495ac024ae3
Base64
4qiO

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A0E';
console.log(char);  // Output: ⨎

Java:

char c = '\u2A0E';
System.out.println(c);  // Output: ⨎

JSON:

{"text": "\u2A0E"}  // Value: ⨎

Python:

char = '\u2A0E'
print(char)  # Output: ⨎

Perl:

my $char = "\x{2A0E}";
print $char;  # Output: ⨎

PHP:

$char = "\x{2A0E}";
echo $char;  // Output: ⨎

Ruby:

char = "\u{2A0E}"
puts char  # Output: ⨎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10766;</p>  <!-- Display: ⨎ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A0E;</p>  <!-- Display: ⨎ -->

URL Encoding:

// ⨎ URL encoding
https://unicodefinder.com/search.php?query=%E2%A8%8E

Encodings

MD5:

93ab900124f772ee1073146780666518

SHA1:

c91e3cd1bbafdf23d1ea3c7baca3b495ac024ae3

Base64:

4qiO