Unicode Finder

"⋫" U+22EB(DOES NOT CONTAIN AS NORMAL SUBGROUP)

U+22EB
نام بلوک
Mathematical Operators
نام
DOES NOT CONTAIN AS NORMAL SUBGROUP

Programming

C
\u22EB
JavaScript
\u22EB
Java
\u22EB
Json
\u22EB
Python
\u22EB
Perl
\x{22EB}
PHP
\x{22EB}
Ruby
\u{22EB}
Rust
\u{22EB}
Go
\u22EB

Web

CSS
\0022EB
HtmlDecimal
⋫
HtmlHexadecimal
⋫
Url
%E2%8B%AB

Code

MD5
4b1f17429433fe29290a6be126057141
Sha1
822a710fb1da7d75b3e06e6a2c03403ab43da264
Base64
4our

مثال‌های استفاده

Programming Languages

C:

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

JavaScript:

const char = '\u22EB';
console.log(char);  // Output: ⋫

Java:

char c = '\u22EB';
System.out.println(c);  // Output: ⋫

JSON:

{"text": "\u22EB"}  // Value: ⋫

Python:

char = '\u22EB'
print(char)  # Output: ⋫

Perl:

my $char = "\x{22EB}";
print $char;  # Output: ⋫

PHP:

$char = "\x{22EB}";
echo $char;  // Output: ⋫

Ruby:

char = "\u{22EB}"
puts char  # Output: ⋫

Rust:

let c = '\u{22EB}';
println!("{}", c);  // Output: ⋫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0022EB";  /* Display: ⋫ */
}

HTML Decimal:

<p>HTML decimal: &#8939;</p>  <!-- Display: ⋫ -->

HTML Hexadecimal:

<p>HTML hex: &#x22EB;</p>  <!-- Display: ⋫ -->

URL Encoding:

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

Encodings

MD5:

4b1f17429433fe29290a6be126057141

SHA1:

822a710fb1da7d75b3e06e6a2c03403ab43da264

Base64:

4our