Unicode Finder

"ᓆ" U+14C6(CANADIAN SYLLABICS Y-CREE NOO)

U+14C6
Όνομα Μπλοκ
Unified Canadian Aboriginal Syllabics
Όνομα
CANADIAN SYLLABICS Y-CREE NOO

Programming

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

Web

CSS
\0014C6
HtmlDecimal
ᓆ
HtmlHexadecimal
ᓆ
Url
%E1%93%86

Code

MD5
231e9b515cb689c0a3c6cc6f709139c4
Sha1
1cfd917459881e432455109d388c41feaff3a38a
Base64
4ZOG

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u14C6';
console.log(char);  // Output: ᓆ

Java:

char c = '\u14C6';
System.out.println(c);  // Output: ᓆ

JSON:

{"text": "\u14C6"}  // Value: ᓆ

Python:

char = '\u14C6'
print(char)  # Output: ᓆ

Perl:

my $char = "\x{14C6}";
print $char;  # Output: ᓆ

PHP:

$char = "\x{14C6}";
echo $char;  // Output: ᓆ

Ruby:

char = "\u{14C6}"
puts char  # Output: ᓆ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5318;</p>  <!-- Display: ᓆ -->

HTML Hexadecimal:

<p>HTML hex: &#x14C6;</p>  <!-- Display: ᓆ -->

URL Encoding:

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

Encodings

MD5:

231e9b515cb689c0a3c6cc6f709139c4

SHA1:

1cfd917459881e432455109d388c41feaff3a38a

Base64:

4ZOG