Unicode Finder

"ᙉ" U+1649(CANADIAN SYLLABICS CARRIER DZO)

U+1649
Nazwa Bloku
Unified Canadian Aboriginal Syllabics
Nazwa
CANADIAN SYLLABICS CARRIER DZO

Programming

C
\u1649
JavaScript
\u1649
Java
\u1649
Json
\u1649
Python
\u1649
Perl
\x{1649}
PHP
\x{1649}
Ruby
\u{1649}
Rust
\u{1649}
Go
\u1649

Web

CSS
\001649
HtmlDecimal
ᙉ
HtmlHexadecimal
ᙉ
Url
%E1%99%89

Code

MD5
ec92ce6b8a3982872603351fe453f61d
Sha1
416c9f02aa85b30652d270e90f3a61d4bab99eea
Base64
4ZmJ

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1649';
console.log(char);  // Output: ᙉ

Java:

char c = '\u1649';
System.out.println(c);  // Output: ᙉ

JSON:

{"text": "\u1649"}  // Value: ᙉ

Python:

char = '\u1649'
print(char)  # Output: ᙉ

Perl:

my $char = "\x{1649}";
print $char;  # Output: ᙉ

PHP:

$char = "\x{1649}";
echo $char;  // Output: ᙉ

Ruby:

char = "\u{1649}"
puts char  # Output: ᙉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001649";  /* Display: ᙉ */
}

HTML Decimal:

<p>HTML decimal: &#5705;</p>  <!-- Display: ᙉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1649;</p>  <!-- Display: ᙉ -->

URL Encoding:

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

Encodings

MD5:

ec92ce6b8a3982872603351fe453f61d

SHA1:

416c9f02aa85b30652d270e90f3a61d4bab99eea

Base64:

4ZmJ