Unicode Finder

"ᓂ" U+14C2(CANADIAN SYLLABICS NI)

U+14C2
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS NI

Programming

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

Web

CSS
\0014C2
HtmlDecimal
ᓂ
HtmlHexadecimal
ᓂ
Url
%E1%93%82

Code

MD5
641a4f1486e9fa9f272d260f670fbd3e
Sha1
698b94a905819840ac0c0e2d286786aeef106c86
Base64
4ZOC

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u14C2';
console.log(char);  // Output: ᓂ

Java:

char c = '\u14C2';
System.out.println(c);  // Output: ᓂ

JSON:

{"text": "\u14C2"}  // Value: ᓂ

Python:

char = '\u14C2'
print(char)  # Output: ᓂ

Perl:

my $char = "\x{14C2}";
print $char;  # Output: ᓂ

PHP:

$char = "\x{14C2}";
echo $char;  // Output: ᓂ

Ruby:

char = "\u{14C2}"
puts char  # Output: ᓂ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#5314;</p>  <!-- Display: ᓂ -->

HTML Hexadecimal:

<p>HTML hex: &#x14C2;</p>  <!-- Display: ᓂ -->

URL Encoding:

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

Encodings

MD5:

641a4f1486e9fa9f272d260f670fbd3e

SHA1:

698b94a905819840ac0c0e2d286786aeef106c86

Base64:

4ZOC