Unicode Finder

"᰿" U+1C3F(LEPCHA PUNCTUATION TSHOOK)

᰿
U+1C3F
ব্লক নাম
Lepcha
নাম
LEPCHA PUNCTUATION TSHOOK

Programming

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

Web

CSS
\001C3F
HtmlDecimal
᰿
HtmlHexadecimal
᰿
Url
%E1%B0%BF

Code

MD5
f29628212bc8032001154dffe744c9b4
Sha1
ca9843bd7b389f4e254c1b140b3727ab7aaeb88c
Base64
4bC/

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

Programming Languages

C:

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

JavaScript:

const char = '\u1C3F';
console.log(char);  // Output: ᰿

Java:

char c = '\u1C3F';
System.out.println(c);  // Output: ᰿

JSON:

{"text": "\u1C3F"}  // Value: ᰿

Python:

char = '\u1C3F'
print(char)  # Output: ᰿

Perl:

my $char = "\x{1C3F}";
print $char;  # Output: ᰿

PHP:

$char = "\x{1C3F}";
echo $char;  // Output: ᰿

Ruby:

char = "\u{1C3F}"
puts char  # Output: ᰿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7231;</p>  <!-- Display: ᰿ -->

HTML Hexadecimal:

<p>HTML hex: &#x1C3F;</p>  <!-- Display: ᰿ -->

URL Encoding:

// ᰿ URL encoding
https://unicodefinder.com/search.php?query=%E1%B0%BF

Encodings

MD5:

f29628212bc8032001154dffe744c9b4

SHA1:

ca9843bd7b389f4e254c1b140b3727ab7aaeb88c

Base64:

4bC/