Unicode Finder

"ᖜ" U+159C(CANADIAN SYLLABICS WOODS-CREE THI)

U+159C
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS WOODS-CREE THI

Programming

C
\u159C
JavaScript
\u159C
Java
\u159C
Json
\u159C
Python
\u159C
Perl
\x{159C}
PHP
\x{159C}
Ruby
\u{159C}
Rust
\u{159C}
Go
\u159C

Web

CSS
\00159C
HtmlDecimal
ᖜ
HtmlHexadecimal
ᖜ
Url
%E1%96%9C

Code

MD5
1abe48e24cdb24fce3a77aed2d6f8ab5
Sha1
ea5653910f2005b30b215a7a4e0251457b56cda4
Base64
4Zac

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u159C';
console.log(char);  // Output: ᖜ

Java:

char c = '\u159C';
System.out.println(c);  // Output: ᖜ

JSON:

{"text": "\u159C"}  // Value: ᖜ

Python:

char = '\u159C'
print(char)  # Output: ᖜ

Perl:

my $char = "\x{159C}";
print $char;  # Output: ᖜ

PHP:

$char = "\x{159C}";
echo $char;  // Output: ᖜ

Ruby:

char = "\u{159C}"
puts char  # Output: ᖜ

Rust:

let c = '\u{159C}';
println!("{}", c);  // Output: ᖜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00159C";  /* Display: ᖜ */
}

HTML Decimal:

<p>HTML decimal: &#5532;</p>  <!-- Display: ᖜ -->

HTML Hexadecimal:

<p>HTML hex: &#x159C;</p>  <!-- Display: ᖜ -->

URL Encoding:

// ᖜ URL encoding
https://unicodefinder.com/search.php?query=%E1%96%9C

Encodings

MD5:

1abe48e24cdb24fce3a77aed2d6f8ab5

SHA1:

ea5653910f2005b30b215a7a4e0251457b56cda4

Base64:

4Zac