Unicode Finder

"ᖎ" U+158E(CANADIAN SYLLABICS NGAAI)

U+158E
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS NGAAI

Programming

C
\u158E
JavaScript
\u158E
Java
\u158E
Json
\u158E
Python
\u158E
Perl
\x{158E}
PHP
\x{158E}
Ruby
\u{158E}
Rust
\u{158E}
Go
\u158E

Web

CSS
\00158E
HtmlDecimal
ᖎ
HtmlHexadecimal
ᖎ
Url
%E1%96%8E

Code

MD5
007ef600ca4051ab5739687b317c62c2
Sha1
e54bbb9228f5883b74f916cded2b8e65e427bb3d
Base64
4ZaO

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u158E';
console.log(char);  // Output: ᖎ

Java:

char c = '\u158E';
System.out.println(c);  // Output: ᖎ

JSON:

{"text": "\u158E"}  // Value: ᖎ

Python:

char = '\u158E'
print(char)  # Output: ᖎ

Perl:

my $char = "\x{158E}";
print $char;  # Output: ᖎ

PHP:

$char = "\x{158E}";
echo $char;  // Output: ᖎ

Ruby:

char = "\u{158E}"
puts char  # Output: ᖎ

Rust:

let c = '\u{158E}';
println!("{}", c);  // Output: ᖎ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00158E";  /* Display: ᖎ */
}

HTML Decimal:

<p>HTML decimal: &#5518;</p>  <!-- Display: ᖎ -->

HTML Hexadecimal:

<p>HTML hex: &#x158E;</p>  <!-- Display: ᖎ -->

URL Encoding:

// ᖎ URL encoding
https://unicodefinder.com/search.php?query=%E1%96%8E

Encodings

MD5:

007ef600ca4051ab5739687b317c62c2

SHA1:

e54bbb9228f5883b74f916cded2b8e65e427bb3d

Base64:

4ZaO