Unicode Finder

"⋜" U+22DC(EQUAL TO OR LESS-THAN)

U+22DC
ব্লক নাম
Mathematical Operators
নাম
EQUAL TO OR LESS-THAN

Programming

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

Web

CSS
\0022DC
HtmlDecimal
⋜
HtmlHexadecimal
⋜
Url
%E2%8B%9C

Code

MD5
50ed5ec5100a8034661313801fe51b27
Sha1
40e9e88db4e03c3efba8cb407112247867cf3315
Base64
4ouc

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

Programming Languages

C:

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

JavaScript:

const char = '\u22DC';
console.log(char);  // Output: ⋜

Java:

char c = '\u22DC';
System.out.println(c);  // Output: ⋜

JSON:

{"text": "\u22DC"}  // Value: ⋜

Python:

char = '\u22DC'
print(char)  # Output: ⋜

Perl:

my $char = "\x{22DC}";
print $char;  # Output: ⋜

PHP:

$char = "\x{22DC}";
echo $char;  // Output: ⋜

Ruby:

char = "\u{22DC}"
puts char  # Output: ⋜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8924;</p>  <!-- Display: ⋜ -->

HTML Hexadecimal:

<p>HTML hex: &#x22DC;</p>  <!-- Display: ⋜ -->

URL Encoding:

// ⋜ URL encoding
https://unicodefinder.com/search.php?query=%E2%8B%9C

Encodings

MD5:

50ed5ec5100a8034661313801fe51b27

SHA1:

40e9e88db4e03c3efba8cb407112247867cf3315

Base64:

4ouc