Unicode Finder

"ᔁ" U+1501(CANADIAN SYLLABICS WEST-CREE SWA)

U+1501
ব্লক নাম
Unified Canadian Aboriginal Syllabics
নাম
CANADIAN SYLLABICS WEST-CREE SWA

Programming

C
\u1501
JavaScript
\u1501
Java
\u1501
Json
\u1501
Python
\u1501
Perl
\x{1501}
PHP
\x{1501}
Ruby
\u{1501}
Rust
\u{1501}
Go
\u1501

Web

CSS
\001501
HtmlDecimal
ᔁ
HtmlHexadecimal
ᔁ
Url
%E1%94%81

Code

MD5
1e202d08ccf4586a0d1002613fc407e3
Sha1
89b013340a9507f93df00f63c1febb679307ceb8
Base64
4ZSB

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

Programming Languages

C:

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

JavaScript:

const char = '\u1501';
console.log(char);  // Output: ᔁ

Java:

char c = '\u1501';
System.out.println(c);  // Output: ᔁ

JSON:

{"text": "\u1501"}  // Value: ᔁ

Python:

char = '\u1501'
print(char)  # Output: ᔁ

Perl:

my $char = "\x{1501}";
print $char;  # Output: ᔁ

PHP:

$char = "\x{1501}";
echo $char;  // Output: ᔁ

Ruby:

char = "\u{1501}"
puts char  # Output: ᔁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001501";  /* Display: ᔁ */
}

HTML Decimal:

<p>HTML decimal: &#5377;</p>  <!-- Display: ᔁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1501;</p>  <!-- Display: ᔁ -->

URL Encoding:

// ᔁ URL encoding
https://unicodefinder.com/search.php?query=%E1%94%81

Encodings

MD5:

1e202d08ccf4586a0d1002613fc407e3

SHA1:

89b013340a9507f93df00f63c1febb679307ceb8

Base64:

4ZSB