Unicode Finder

"ᓪ" U+14EA(CANADIAN SYLLABICS L)

U+14EA
Block Name
Unified Canadian Aboriginal Syllabics
Name
CANADIAN SYLLABICS L

Programming

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

Web

CSS
\0014EA
HtmlDecimal
ᓪ
HtmlHexadecimal
ᓪ
Url
%E1%93%AA

Code

MD5
f4baf6274a35b62e25a8c253410d21af
Sha1
b217375aaa2dafe89969d4e30324c07e0fded932
Base64
4ZOq

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u14EA';
console.log(char);  // Output: ᓪ

Java:

char c = '\u14EA';
System.out.println(c);  // Output: ᓪ

JSON:

{"text": "\u14EA"}  // Value: ᓪ

Python:

char = '\u14EA'
print(char)  # Output: ᓪ

Perl:

my $char = "\x{14EA}";
print $char;  # Output: ᓪ

PHP:

$char = "\x{14EA}";
echo $char;  // Output: ᓪ

Ruby:

char = "\u{14EA}"
puts char  # Output: ᓪ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5354;</p>  <!-- Display: ᓪ -->

HTML Hexadecimal:

<p>HTML hex: &#x14EA;</p>  <!-- Display: ᓪ -->

URL Encoding:

// ᓪ URL encoding
https://unicodefinder.com/search.php?query=%E1%93%AA

Encodings

MD5:

f4baf6274a35b62e25a8c253410d21af

SHA1:

b217375aaa2dafe89969d4e30324c07e0fded932

Base64:

4ZOq