Unicode Finder

"⋰" U+22F0(UP RIGHT DIAGONAL ELLIPSIS)

U+22F0
ব্লক নাম
Mathematical Operators
নাম
UP RIGHT DIAGONAL ELLIPSIS

Programming

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

Web

CSS
\0022F0
HtmlDecimal
⋰
HtmlHexadecimal
⋰
Url
%E2%8B%B0

Code

MD5
b155ef95787a58cb4bf95777e94d8b29
Sha1
469e1c99d9146eef3ab5f31d6426caeba051ed5e
Base64
4ouw

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u22F0';
console.log(char);  // Output: ⋰

Java:

char c = '\u22F0';
System.out.println(c);  // Output: ⋰

JSON:

{"text": "\u22F0"}  // Value: ⋰

Python:

char = '\u22F0'
print(char)  # Output: ⋰

Perl:

my $char = "\x{22F0}";
print $char;  # Output: ⋰

PHP:

$char = "\x{22F0}";
echo $char;  // Output: ⋰

Ruby:

char = "\u{22F0}"
puts char  # Output: ⋰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8944;</p>  <!-- Display: ⋰ -->

HTML Hexadecimal:

<p>HTML hex: &#x22F0;</p>  <!-- Display: ⋰ -->

URL Encoding:

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

Encodings

MD5:

b155ef95787a58cb4bf95777e94d8b29

SHA1:

469e1c99d9146eef3ab5f31d6426caeba051ed5e

Base64:

4ouw