Unicode Finder

"⫳" U+2AF3(PARALLEL WITH TILDE OPERATOR)

U+2AF3
Block Name
Supplemental Mathematical Operators
Name
PARALLEL WITH TILDE OPERATOR

Programming

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

Web

CSS
\002AF3
HtmlDecimal
⫳
HtmlHexadecimal
⫳
Url
%E2%AB%B3

Code

MD5
0b6660eb1140efefab96ad7f70ad50f9
Sha1
10c7aa6d11d1f09c9cf5ff3ef0abcd4320d20723
Base64
4quz

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AF3';
console.log(char);  // Output: ⫳

Java:

char c = '\u2AF3';
System.out.println(c);  // Output: ⫳

JSON:

{"text": "\u2AF3"}  // Value: ⫳

Python:

char = '\u2AF3'
print(char)  # Output: ⫳

Perl:

my $char = "\x{2AF3}";
print $char;  # Output: ⫳

PHP:

$char = "\x{2AF3}";
echo $char;  // Output: ⫳

Ruby:

char = "\u{2AF3}"
puts char  # Output: ⫳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10995;</p>  <!-- Display: ⫳ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AF3;</p>  <!-- Display: ⫳ -->

URL Encoding:

// ⫳ URL encoding
https://unicodefinder.com/search.php?query=%E2%AB%B3

Encodings

MD5:

0b6660eb1140efefab96ad7f70ad50f9

SHA1:

10c7aa6d11d1f09c9cf5ff3ef0abcd4320d20723

Base64:

4quz