Unicode Finder

"ᙠ" U+1660(CANADIAN SYLLABICS CARRIER TSA)

U+1660
ব্লক নাম
Unified Canadian Aboriginal Syllabics
নাম
CANADIAN SYLLABICS CARRIER TSA

Programming

C
\u1660
JavaScript
\u1660
Java
\u1660
Json
\u1660
Python
\u1660
Perl
\x{1660}
PHP
\x{1660}
Ruby
\u{1660}
Rust
\u{1660}
Go
\u1660

Web

CSS
\001660
HtmlDecimal
ᙠ
HtmlHexadecimal
ᙠ
Url
%E1%99%A0

Code

MD5
f5879dee9611cb9a712c765b2f211610
Sha1
c72c06e3d166fc845a727527dcf8387d54efb0fc
Base64
4Zmg

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

Programming Languages

C:

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

JavaScript:

const char = '\u1660';
console.log(char);  // Output: ᙠ

Java:

char c = '\u1660';
System.out.println(c);  // Output: ᙠ

JSON:

{"text": "\u1660"}  // Value: ᙠ

Python:

char = '\u1660'
print(char)  # Output: ᙠ

Perl:

my $char = "\x{1660}";
print $char;  # Output: ᙠ

PHP:

$char = "\x{1660}";
echo $char;  // Output: ᙠ

Ruby:

char = "\u{1660}"
puts char  # Output: ᙠ

Rust:

let c = '\u{1660}';
println!("{}", c);  // Output: ᙠ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001660";  /* Display: ᙠ */
}

HTML Decimal:

<p>HTML decimal: &#5728;</p>  <!-- Display: ᙠ -->

HTML Hexadecimal:

<p>HTML hex: &#x1660;</p>  <!-- Display: ᙠ -->

URL Encoding:

// ᙠ URL encoding
https://unicodefinder.com/search.php?query=%E1%99%A0

Encodings

MD5:

f5879dee9611cb9a712c765b2f211610

SHA1:

c72c06e3d166fc845a727527dcf8387d54efb0fc

Base64:

4Zmg