Unicode Finder

"⫵" U+2AF5(TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE)

U+2AF5
Block Name
Supplemental Mathematical Operators
Name
TRIPLE VERTICAL BAR WITH HORIZONTAL STROKE

Programming

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

Web

CSS
\002AF5
HtmlDecimal
⫵
HtmlHexadecimal
⫵
Url
%E2%AB%B5

Code

MD5
de5e1cfbf82f5413170e4e114327f423
Sha1
8a05946b75002b01f076d769b86a0783a6572396
Base64
4qu1

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AF5';
console.log(char);  // Output: ⫵

Java:

char c = '\u2AF5';
System.out.println(c);  // Output: ⫵

JSON:

{"text": "\u2AF5"}  // Value: ⫵

Python:

char = '\u2AF5'
print(char)  # Output: ⫵

Perl:

my $char = "\x{2AF5}";
print $char;  # Output: ⫵

PHP:

$char = "\x{2AF5}";
echo $char;  // Output: ⫵

Ruby:

char = "\u{2AF5}"
puts char  # Output: ⫵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10997;</p>  <!-- Display: ⫵ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AF5;</p>  <!-- Display: ⫵ -->

URL Encoding:

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

Encodings

MD5:

de5e1cfbf82f5413170e4e114327f423

SHA1:

8a05946b75002b01f076d769b86a0783a6572396

Base64:

4qu1