Unicode Finder

"⨜" U+2A1C(INTEGRAL WITH UNDERBAR)

U+2A1C
Block Name
Supplemental Mathematical Operators
Name
INTEGRAL WITH UNDERBAR

Programming

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

Web

CSS
\002A1C
HtmlDecimal
⨜
HtmlHexadecimal
⨜
Url
%E2%A8%9C

Code

MD5
c9e08506d21e497c45862f60a9f882f3
Sha1
348c9047a69946b7275e3581a144f3b2da681f6f
Base64
4qic

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A1C';
console.log(char);  // Output: ⨜

Java:

char c = '\u2A1C';
System.out.println(c);  // Output: ⨜

JSON:

{"text": "\u2A1C"}  // Value: ⨜

Python:

char = '\u2A1C'
print(char)  # Output: ⨜

Perl:

my $char = "\x{2A1C}";
print $char;  # Output: ⨜

PHP:

$char = "\x{2A1C}";
echo $char;  // Output: ⨜

Ruby:

char = "\u{2A1C}"
puts char  # Output: ⨜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10780;</p>  <!-- Display: ⨜ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A1C;</p>  <!-- Display: ⨜ -->

URL Encoding:

// ⨜ URL encoding
https://unicodefinder.com/search.php?query=%E2%A8%9C

Encodings

MD5:

c9e08506d21e497c45862f60a9f882f3

SHA1:

348c9047a69946b7275e3581a144f3b2da681f6f

Base64:

4qic