Unicode Finder

"ᙒ" U+1652(CANADIAN SYLLABICS CARRIER SI)

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

Programming

C
\u1652
JavaScript
\u1652
Java
\u1652
Json
\u1652
Python
\u1652
Perl
\x{1652}
PHP
\x{1652}
Ruby
\u{1652}
Rust
\u{1652}
Go
\u1652

Web

CSS
\001652
HtmlDecimal
ᙒ
HtmlHexadecimal
ᙒ
Url
%E1%99%92

Code

MD5
c7e42ee0d63aff8701e517950227f3b1
Sha1
2f04dd396596011f95d259546a5153fda0707d71
Base64
4ZmS

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

Programming Languages

C:

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

JavaScript:

const char = '\u1652';
console.log(char);  // Output: ᙒ

Java:

char c = '\u1652';
System.out.println(c);  // Output: ᙒ

JSON:

{"text": "\u1652"}  // Value: ᙒ

Python:

char = '\u1652'
print(char)  # Output: ᙒ

Perl:

my $char = "\x{1652}";
print $char;  # Output: ᙒ

PHP:

$char = "\x{1652}";
echo $char;  // Output: ᙒ

Ruby:

char = "\u{1652}"
puts char  # Output: ᙒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001652";  /* Display: ᙒ */
}

HTML Decimal:

<p>HTML decimal: &#5714;</p>  <!-- Display: ᙒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1652;</p>  <!-- Display: ᙒ -->

URL Encoding:

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

Encodings

MD5:

c7e42ee0d63aff8701e517950227f3b1

SHA1:

2f04dd396596011f95d259546a5153fda0707d71

Base64:

4ZmS