Unicode Finder

"ᓇ" U+14C7(CANADIAN SYLLABICS NA)

U+14C7
שם בלוק
Unified Canadian Aboriginal Syllabics
שם
CANADIAN SYLLABICS NA

Programming

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

Web

CSS
\0014C7
HtmlDecimal
ᓇ
HtmlHexadecimal
ᓇ
Url
%E1%93%87

Code

MD5
c79ee6dc2b27757ce36eff7f79c89c69
Sha1
6940c2ff5ddf84daab16d56708386262d5048911
Base64
4ZOH

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u14C7';
console.log(char);  // Output: ᓇ

Java:

char c = '\u14C7';
System.out.println(c);  // Output: ᓇ

JSON:

{"text": "\u14C7"}  // Value: ᓇ

Python:

char = '\u14C7'
print(char)  # Output: ᓇ

Perl:

my $char = "\x{14C7}";
print $char;  # Output: ᓇ

PHP:

$char = "\x{14C7}";
echo $char;  // Output: ᓇ

Ruby:

char = "\u{14C7}"
puts char  # Output: ᓇ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5319;</p>  <!-- Display: ᓇ -->

HTML Hexadecimal:

<p>HTML hex: &#x14C7;</p>  <!-- Display: ᓇ -->

URL Encoding:

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

Encodings

MD5:

c79ee6dc2b27757ce36eff7f79c89c69

SHA1:

6940c2ff5ddf84daab16d56708386262d5048911

Base64:

4ZOH