Unicode Finder

"ᒜ" U+149C(CANADIAN SYLLABICS CWA)

U+149C
Nazwa Bloku
Unified Canadian Aboriginal Syllabics
Nazwa
CANADIAN SYLLABICS CWA

Programming

C
\u149C
JavaScript
\u149C
Java
\u149C
Json
\u149C
Python
\u149C
Perl
\x{149C}
PHP
\x{149C}
Ruby
\u{149C}
Rust
\u{149C}
Go
\u149C

Web

CSS
\00149C
HtmlDecimal
ᒜ
HtmlHexadecimal
ᒜ
Url
%E1%92%9C

Code

MD5
a42f21e860a4975d110ec3732b5ca1cc
Sha1
d53e1751698984c2440063dbc24bfdc4bb93aad3
Base64
4ZKc

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u149C';
console.log(char);  // Output: ᒜ

Java:

char c = '\u149C';
System.out.println(c);  // Output: ᒜ

JSON:

{"text": "\u149C"}  // Value: ᒜ

Python:

char = '\u149C'
print(char)  # Output: ᒜ

Perl:

my $char = "\x{149C}";
print $char;  # Output: ᒜ

PHP:

$char = "\x{149C}";
echo $char;  // Output: ᒜ

Ruby:

char = "\u{149C}"
puts char  # Output: ᒜ

Rust:

let c = '\u{149C}';
println!("{}", c);  // Output: ᒜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00149C";  /* Display: ᒜ */
}

HTML Decimal:

<p>HTML decimal: &#5276;</p>  <!-- Display: ᒜ -->

HTML Hexadecimal:

<p>HTML hex: &#x149C;</p>  <!-- Display: ᒜ -->

URL Encoding:

// ᒜ URL encoding
https://unicodefinder.com/search.php?query=%E1%92%9C

Encodings

MD5:

a42f21e860a4975d110ec3732b5ca1cc

SHA1:

d53e1751698984c2440063dbc24bfdc4bb93aad3

Base64:

4ZKc