Unicode Finder

"⫡" U+2AE1(PERPENDICULAR WITH S)

U+2AE1
Block Name
Supplemental Mathematical Operators
Name
PERPENDICULAR WITH S

Programming

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

Web

CSS
\002AE1
HtmlDecimal
⫡
HtmlHexadecimal
⫡
Url
%E2%AB%A1

Code

MD5
04a5e4e6ddbdcc2d5bf835edc76dfd0a
Sha1
b17e6adeaf1d198f2d088b421cc539cd6f557e10
Base64
4quh

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AE1';
console.log(char);  // Output: ⫡

Java:

char c = '\u2AE1';
System.out.println(c);  // Output: ⫡

JSON:

{"text": "\u2AE1"}  // Value: ⫡

Python:

char = '\u2AE1'
print(char)  # Output: ⫡

Perl:

my $char = "\x{2AE1}";
print $char;  # Output: ⫡

PHP:

$char = "\x{2AE1}";
echo $char;  // Output: ⫡

Ruby:

char = "\u{2AE1}"
puts char  # Output: ⫡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10977;</p>  <!-- Display: ⫡ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AE1;</p>  <!-- Display: ⫡ -->

URL Encoding:

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

Encodings

MD5:

04a5e4e6ddbdcc2d5bf835edc76dfd0a

SHA1:

b17e6adeaf1d198f2d088b421cc539cd6f557e10

Base64:

4quh