Unicode Finder

"ᙐ" U+1650(CANADIAN SYLLABICS CARRIER SE)

U+1650
ब्लॉक का नाम
Unified Canadian Aboriginal Syllabics
नाम
CANADIAN SYLLABICS CARRIER SE

Programming

C
\u1650
JavaScript
\u1650
Java
\u1650
Json
\u1650
Python
\u1650
Perl
\x{1650}
PHP
\x{1650}
Ruby
\u{1650}
Rust
\u{1650}
Go
\u1650

Web

CSS
\001650
HtmlDecimal
ᙐ
HtmlHexadecimal
ᙐ
Url
%E1%99%90

Code

MD5
dec1f880f4b5ba96c2fdbe2d2705c1c1
Sha1
62568e1815cf7d68310a01b48ded8ae856769871
Base64
4ZmQ

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u1650';
console.log(char);  // Output: ᙐ

Java:

char c = '\u1650';
System.out.println(c);  // Output: ᙐ

JSON:

{"text": "\u1650"}  // Value: ᙐ

Python:

char = '\u1650'
print(char)  # Output: ᙐ

Perl:

my $char = "\x{1650}";
print $char;  # Output: ᙐ

PHP:

$char = "\x{1650}";
echo $char;  // Output: ᙐ

Ruby:

char = "\u{1650}"
puts char  # Output: ᙐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001650";  /* Display: ᙐ */
}

HTML Decimal:

<p>HTML decimal: &#5712;</p>  <!-- Display: ᙐ -->

HTML Hexadecimal:

<p>HTML hex: &#x1650;</p>  <!-- Display: ᙐ -->

URL Encoding:

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

Encodings

MD5:

dec1f880f4b5ba96c2fdbe2d2705c1c1

SHA1:

62568e1815cf7d68310a01b48ded8ae856769871

Base64:

4ZmQ