Unicode Finder

"⩛" U+2A5B(LOGICAL OR WITH MIDDLE STEM)

U+2A5B
Block Name
Supplemental Mathematical Operators
Name
LOGICAL OR WITH MIDDLE STEM

Programming

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

Web

CSS
\002A5B
HtmlDecimal
⩛
HtmlHexadecimal
⩛
Url
%E2%A9%9B

Code

MD5
b5476f95ddf6d5fbc3ced238b39a3011
Sha1
74beb77162e12ed88bdf659fca57d58a24b23782
Base64
4qmb

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A5B';
console.log(char);  // Output: ⩛

Java:

char c = '\u2A5B';
System.out.println(c);  // Output: ⩛

JSON:

{"text": "\u2A5B"}  // Value: ⩛

Python:

char = '\u2A5B'
print(char)  # Output: ⩛

Perl:

my $char = "\x{2A5B}";
print $char;  # Output: ⩛

PHP:

$char = "\x{2A5B}";
echo $char;  // Output: ⩛

Ruby:

char = "\u{2A5B}"
puts char  # Output: ⩛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10843;</p>  <!-- Display: ⩛ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A5B;</p>  <!-- Display: ⩛ -->

URL Encoding:

// ⩛ URL encoding
https://unicodefinder.com/search.php?query=%E2%A9%9B

Encodings

MD5:

b5476f95ddf6d5fbc3ced238b39a3011

SHA1:

74beb77162e12ed88bdf659fca57d58a24b23782

Base64:

4qmb