Unicode Finder

"⨟" U+2A1F(Z NOTATION SCHEMA COMPOSITION)

U+2A1F
Block Name
Supplemental Mathematical Operators
Name
Z NOTATION SCHEMA COMPOSITION

Programming

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

Web

CSS
\002A1F
HtmlDecimal
⨟
HtmlHexadecimal
⨟
Url
%E2%A8%9F

Code

MD5
1c72088b23fc14d84ecf538bec27e6fc
Sha1
d82e93d7dcc7a0bd70da6deae92ff151d8c9ae2b
Base64
4qif

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A1F';
console.log(char);  // Output: ⨟

Java:

char c = '\u2A1F';
System.out.println(c);  // Output: ⨟

JSON:

{"text": "\u2A1F"}  // Value: ⨟

Python:

char = '\u2A1F'
print(char)  # Output: ⨟

Perl:

my $char = "\x{2A1F}";
print $char;  # Output: ⨟

PHP:

$char = "\x{2A1F}";
echo $char;  // Output: ⨟

Ruby:

char = "\u{2A1F}"
puts char  # Output: ⨟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10783;</p>  <!-- Display: ⨟ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A1F;</p>  <!-- Display: ⨟ -->

URL Encoding:

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

Encodings

MD5:

1c72088b23fc14d84ecf538bec27e6fc

SHA1:

d82e93d7dcc7a0bd70da6deae92ff151d8c9ae2b

Base64:

4qif