Unicode Finder

"⋾" U+22FE(SMALL CONTAINS WITH OVERBAR)

U+22FE
ब्लॉक का नाम
Mathematical Operators
नाम
SMALL CONTAINS WITH OVERBAR

Programming

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

Web

CSS
\0022FE
HtmlDecimal
⋾
HtmlHexadecimal
⋾
Url
%E2%8B%BE

Code

MD5
32cded74f2c7e26a7a040acfb7f86cc0
Sha1
6e3fd122c2f1d336af322192a4631348272a091b
Base64
4ou+

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u22FE';
console.log(char);  // Output: ⋾

Java:

char c = '\u22FE';
System.out.println(c);  // Output: ⋾

JSON:

{"text": "\u22FE"}  // Value: ⋾

Python:

char = '\u22FE'
print(char)  # Output: ⋾

Perl:

my $char = "\x{22FE}";
print $char;  # Output: ⋾

PHP:

$char = "\x{22FE}";
echo $char;  // Output: ⋾

Ruby:

char = "\u{22FE}"
puts char  # Output: ⋾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8958;</p>  <!-- Display: ⋾ -->

HTML Hexadecimal:

<p>HTML hex: &#x22FE;</p>  <!-- Display: ⋾ -->

URL Encoding:

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

Encodings

MD5:

32cded74f2c7e26a7a040acfb7f86cc0

SHA1:

6e3fd122c2f1d336af322192a4631348272a091b

Base64:

4ou+