Unicode Finder

"ᙯ" U+166F(CANADIAN SYLLABICS QAI)

U+166F
Block Name
Unified Canadian Aboriginal Syllabics
Name
CANADIAN SYLLABICS QAI

Programming

C
\u166F
JavaScript
\u166F
Java
\u166F
Json
\u166F
Python
\u166F
Perl
\x{166F}
PHP
\x{166F}
Ruby
\u{166F}
Rust
\u{166F}
Go
\u166F

Web

CSS
\00166F
HtmlDecimal
ᙯ
HtmlHexadecimal
ᙯ
Url
%E1%99%AF

Code

MD5
ed702e2b7527d82259e82681ea7c4b04
Sha1
d539ee4167cc3d1f99ebe73d2910e94c71cf16b7
Base64
4Zmv

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u166F';
console.log(char);  // Output: ᙯ

Java:

char c = '\u166F';
System.out.println(c);  // Output: ᙯ

JSON:

{"text": "\u166F"}  // Value: ᙯ

Python:

char = '\u166F'
print(char)  # Output: ᙯ

Perl:

my $char = "\x{166F}";
print $char;  # Output: ᙯ

PHP:

$char = "\x{166F}";
echo $char;  // Output: ᙯ

Ruby:

char = "\u{166F}"
puts char  # Output: ᙯ

Rust:

let c = '\u{166F}';
println!("{}", c);  // Output: ᙯ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00166F";  /* Display: ᙯ */
}

HTML Decimal:

<p>HTML decimal: &#5743;</p>  <!-- Display: ᙯ -->

HTML Hexadecimal:

<p>HTML hex: &#x166F;</p>  <!-- Display: ᙯ -->

URL Encoding:

// ᙯ URL encoding
https://unicodefinder.com/search.php?query=%E1%99%AF

Encodings

MD5:

ed702e2b7527d82259e82681ea7c4b04

SHA1:

d539ee4167cc3d1f99ebe73d2910e94c71cf16b7

Base64:

4Zmv