Unicode Finder

"⫏" U+2ACF(CLOSED SUBSET)

U+2ACF
Block Name
Supplemental Mathematical Operators
Name
CLOSED SUBSET

Programming

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

Web

CSS
\002ACF
HtmlDecimal
⫏
HtmlHexadecimal
⫏
Url
%E2%AB%8F

Code

MD5
ac57857b0aca2497a69bd2ea91763cb0
Sha1
e219ce42370bbc343ca254090767dafc2e625f76
Base64
4quP

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2ACF';
console.log(char);  // Output: ⫏

Java:

char c = '\u2ACF';
System.out.println(c);  // Output: ⫏

JSON:

{"text": "\u2ACF"}  // Value: ⫏

Python:

char = '\u2ACF'
print(char)  # Output: ⫏

Perl:

my $char = "\x{2ACF}";
print $char;  # Output: ⫏

PHP:

$char = "\x{2ACF}";
echo $char;  // Output: ⫏

Ruby:

char = "\u{2ACF}"
puts char  # Output: ⫏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10959;</p>  <!-- Display: ⫏ -->

HTML Hexadecimal:

<p>HTML hex: &#x2ACF;</p>  <!-- Display: ⫏ -->

URL Encoding:

// ⫏ URL encoding
https://unicodefinder.com/search.php?query=%E2%AB%8F

Encodings

MD5:

ac57857b0aca2497a69bd2ea91763cb0

SHA1:

e219ce42370bbc343ca254090767dafc2e625f76

Base64:

4quP