Unicode Finder

"⋈" U+22C8(BOWTIE)

U+22C8
ব্লক নাম
Mathematical Operators
নাম
BOWTIE

Programming

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

Web

CSS
\0022C8
HtmlDecimal
⋈
HtmlHexadecimal
⋈
Url
%E2%8B%88

Code

MD5
0a89a33a70d3187478abed2afe3bfb5e
Sha1
dd55ef2dbe9eeabf38f48100152372ebee03d6e9
Base64
4ouI

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

Programming Languages

C:

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

JavaScript:

const char = '\u22C8';
console.log(char);  // Output: ⋈

Java:

char c = '\u22C8';
System.out.println(c);  // Output: ⋈

JSON:

{"text": "\u22C8"}  // Value: ⋈

Python:

char = '\u22C8'
print(char)  # Output: ⋈

Perl:

my $char = "\x{22C8}";
print $char;  # Output: ⋈

PHP:

$char = "\x{22C8}";
echo $char;  // Output: ⋈

Ruby:

char = "\u{22C8}"
puts char  # Output: ⋈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8904;</p>  <!-- Display: ⋈ -->

HTML Hexadecimal:

<p>HTML hex: &#x22C8;</p>  <!-- Display: ⋈ -->

URL Encoding:

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

Encodings

MD5:

0a89a33a70d3187478abed2afe3bfb5e

SHA1:

dd55ef2dbe9eeabf38f48100152372ebee03d6e9

Base64:

4ouI