Unicode Finder

"ᘫ" U+162B(CANADIAN SYLLABICS CARRIER DLEE)

U+162B
Block Name
Unified Canadian Aboriginal Syllabics
Name
CANADIAN SYLLABICS CARRIER DLEE

Programming

C
\u162B
JavaScript
\u162B
Java
\u162B
Json
\u162B
Python
\u162B
Perl
\x{162B}
PHP
\x{162B}
Ruby
\u{162B}
Rust
\u{162B}
Go
\u162B

Web

CSS
\00162B
HtmlDecimal
ᘫ
HtmlHexadecimal
ᘫ
Url
%E1%98%AB

Code

MD5
d940667db0da5cc4ab1efbaf3cd78fef
Sha1
d076213a46a99b417b101af64821019e91a1457c
Base64
4Zir

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u162B';
console.log(char);  // Output: ᘫ

Java:

char c = '\u162B';
System.out.println(c);  // Output: ᘫ

JSON:

{"text": "\u162B"}  // Value: ᘫ

Python:

char = '\u162B'
print(char)  # Output: ᘫ

Perl:

my $char = "\x{162B}";
print $char;  # Output: ᘫ

PHP:

$char = "\x{162B}";
echo $char;  // Output: ᘫ

Ruby:

char = "\u{162B}"
puts char  # Output: ᘫ

Rust:

let c = '\u{162B}';
println!("{}", c);  // Output: ᘫ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00162B";  /* Display: ᘫ */
}

HTML Decimal:

<p>HTML decimal: &#5675;</p>  <!-- Display: ᘫ -->

HTML Hexadecimal:

<p>HTML hex: &#x162B;</p>  <!-- Display: ᘫ -->

URL Encoding:

// ᘫ URL encoding
https://unicodefinder.com/search.php?query=%E1%98%AB

Encodings

MD5:

d940667db0da5cc4ab1efbaf3cd78fef

SHA1:

d076213a46a99b417b101af64821019e91a1457c

Base64:

4Zir