Unicode Finder

"ᓬ" U+14EC(CANADIAN SYLLABICS MEDIAL L)

U+14EC
Blokk Neve
Unified Canadian Aboriginal Syllabics
Név
CANADIAN SYLLABICS MEDIAL L

Programming

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

Web

CSS
\0014EC
HtmlDecimal
ᓬ
HtmlHexadecimal
ᓬ
Url
%E1%93%AC

Code

MD5
9196316d2e4768ad900195c9ea9ec07f
Sha1
1c17a0a94812af983d1c9fa7f82029d0db2cda51
Base64
4ZOs

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u14EC';
console.log(char);  // Output: ᓬ

Java:

char c = '\u14EC';
System.out.println(c);  // Output: ᓬ

JSON:

{"text": "\u14EC"}  // Value: ᓬ

Python:

char = '\u14EC'
print(char)  # Output: ᓬ

Perl:

my $char = "\x{14EC}";
print $char;  # Output: ᓬ

PHP:

$char = "\x{14EC}";
echo $char;  // Output: ᓬ

Ruby:

char = "\u{14EC}"
puts char  # Output: ᓬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5356;</p>  <!-- Display: ᓬ -->

HTML Hexadecimal:

<p>HTML hex: &#x14EC;</p>  <!-- Display: ᓬ -->

URL Encoding:

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

Encodings

MD5:

9196316d2e4768ad900195c9ea9ec07f

SHA1:

1c17a0a94812af983d1c9fa7f82029d0db2cda51

Base64:

4ZOs