Unicode Finder

"ᓏ" U+14CF(CANADIAN SYLLABICS NASKAPI NWAA)

U+14CF
Bloknaam
Unified Canadian Aboriginal Syllabics
Naam
CANADIAN SYLLABICS NASKAPI NWAA

Programming

C
\u14CF
JavaScript
\u14CF
Java
\u14CF
Json
\u14CF
Python
\u14CF
Perl
\x{14CF}
PHP
\x{14CF}
Ruby
\u{14CF}
Rust
\u{14CF}
Go
\u14CF

Web

CSS
\0014CF
HtmlDecimal
ᓏ
HtmlHexadecimal
ᓏ
Url
%E1%93%8F

Code

MD5
13b51cbffa32f0ea36afc78844b8fd54
Sha1
9ea8c87d62b2f8519f16166275083177f0122829
Base64
4ZOP

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u14CF';
console.log(char);  // Output: ᓏ

Java:

char c = '\u14CF';
System.out.println(c);  // Output: ᓏ

JSON:

{"text": "\u14CF"}  // Value: ᓏ

Python:

char = '\u14CF'
print(char)  # Output: ᓏ

Perl:

my $char = "\x{14CF}";
print $char;  # Output: ᓏ

PHP:

$char = "\x{14CF}";
echo $char;  // Output: ᓏ

Ruby:

char = "\u{14CF}"
puts char  # Output: ᓏ

Rust:

let c = '\u{14CF}';
println!("{}", c);  // Output: ᓏ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0014CF";  /* Display: ᓏ */
}

HTML Decimal:

<p>HTML decimal: &#5327;</p>  <!-- Display: ᓏ -->

HTML Hexadecimal:

<p>HTML hex: &#x14CF;</p>  <!-- Display: ᓏ -->

URL Encoding:

// ᓏ URL encoding
https://unicodefinder.com/search.php?query=%E1%93%8F

Encodings

MD5:

13b51cbffa32f0ea36afc78844b8fd54

SHA1:

9ea8c87d62b2f8519f16166275083177f0122829

Base64:

4ZOP