Unicode Finder

"᷽" U+1DFD(COMBINING ALMOST EQUAL TO BELOW)

U+1DFD
ব্লক নাম
Combining Diacritical Marks Supplement
নাম
COMBINING ALMOST EQUAL TO BELOW

Programming

C
\u1DFD
JavaScript
\u1DFD
Java
\u1DFD
Json
\u1DFD
Python
\u1DFD
Perl
\x{1DFD}
PHP
\x{1DFD}
Ruby
\u{1DFD}
Rust
\u{1DFD}
Go
\u1DFD

Web

CSS
\001DFD
HtmlDecimal
᷽
HtmlHexadecimal
᷽
Url
%E1%B7%BD

Code

MD5
d51ed258866a02eff516fde1334691b7
Sha1
f72152bb9281e8afdb1d0ee29ae7433a3d1111ef
Base64
4be9

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

Programming Languages

C:

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

JavaScript:

const char = '\u1DFD';
console.log(char);  // Output: ᷽

Java:

char c = '\u1DFD';
System.out.println(c);  // Output: ᷽

JSON:

{"text": "\u1DFD"}  // Value: ᷽

Python:

char = '\u1DFD'
print(char)  # Output: ᷽

Perl:

my $char = "\x{1DFD}";
print $char;  # Output: ᷽

PHP:

$char = "\x{1DFD}";
echo $char;  // Output: ᷽

Ruby:

char = "\u{1DFD}"
puts char  # Output: ᷽

Rust:

let c = '\u{1DFD}';
println!("{}", c);  // Output: ᷽

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001DFD";  /* Display: ᷽ */
}

HTML Decimal:

<p>HTML decimal: &#7677;</p>  <!-- Display: ᷽ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DFD;</p>  <!-- Display: ᷽ -->

URL Encoding:

// ᷽ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%BD

Encodings

MD5:

d51ed258866a02eff516fde1334691b7

SHA1:

f72152bb9281e8afdb1d0ee29ae7433a3d1111ef

Base64:

4be9