Unicode Finder

"ᒁ" U+1481(CANADIAN SYLLABICS WEST-CREE KWAA)

U+1481
Nome del Blocco
Unified Canadian Aboriginal Syllabics
Nome
CANADIAN SYLLABICS WEST-CREE KWAA

Programming

C
\u1481
JavaScript
\u1481
Java
\u1481
Json
\u1481
Python
\u1481
Perl
\x{1481}
PHP
\x{1481}
Ruby
\u{1481}
Rust
\u{1481}
Go
\u1481

Web

CSS
\001481
HtmlDecimal
ᒁ
HtmlHexadecimal
ᒁ
Url
%E1%92%81

Code

MD5
43eac14d189bec47d52d7c2c6c2f528f
Sha1
582427e326e1142144c5af9de07876ea893f765f
Base64
4ZKB

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u1481';
console.log(char);  // Output: ᒁ

Java:

char c = '\u1481';
System.out.println(c);  // Output: ᒁ

JSON:

{"text": "\u1481"}  // Value: ᒁ

Python:

char = '\u1481'
print(char)  # Output: ᒁ

Perl:

my $char = "\x{1481}";
print $char;  # Output: ᒁ

PHP:

$char = "\x{1481}";
echo $char;  // Output: ᒁ

Ruby:

char = "\u{1481}"
puts char  # Output: ᒁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001481";  /* Display: ᒁ */
}

HTML Decimal:

<p>HTML decimal: &#5249;</p>  <!-- Display: ᒁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1481;</p>  <!-- Display: ᒁ -->

URL Encoding:

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

Encodings

MD5:

43eac14d189bec47d52d7c2c6c2f528f

SHA1:

582427e326e1142144c5af9de07876ea893f765f

Base64:

4ZKB