Unicode Finder

"ᖫ" U+15AB(CANADIAN SYLLABICS TH-CREE THOO)

U+15AB
ブロック名
Unified Canadian Aboriginal Syllabics
名前
CANADIAN SYLLABICS TH-CREE THOO

Programming

C
\u15AB
JavaScript
\u15AB
Java
\u15AB
Json
\u15AB
Python
\u15AB
Perl
\x{15AB}
PHP
\x{15AB}
Ruby
\u{15AB}
Rust
\u{15AB}
Go
\u15AB

Web

CSS
\0015AB
HtmlDecimal
ᖫ
HtmlHexadecimal
ᖫ
Url
%E1%96%AB

Code

MD5
1555d9b0292d114a9da4dcd55131317e
Sha1
f382ccff0cea933c55e5f16017b2f0e8bef7b9b6
Base64
4Zar

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u15AB';
console.log(char);  // Output: ᖫ

Java:

char c = '\u15AB';
System.out.println(c);  // Output: ᖫ

JSON:

{"text": "\u15AB"}  // Value: ᖫ

Python:

char = '\u15AB'
print(char)  # Output: ᖫ

Perl:

my $char = "\x{15AB}";
print $char;  # Output: ᖫ

PHP:

$char = "\x{15AB}";
echo $char;  // Output: ᖫ

Ruby:

char = "\u{15AB}"
puts char  # Output: ᖫ

Rust:

let c = '\u{15AB}';
println!("{}", c);  // Output: ᖫ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0015AB";  /* Display: ᖫ */
}

HTML Decimal:

<p>HTML decimal: &#5547;</p>  <!-- Display: ᖫ -->

HTML Hexadecimal:

<p>HTML hex: &#x15AB;</p>  <!-- Display: ᖫ -->

URL Encoding:

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

Encodings

MD5:

1555d9b0292d114a9da4dcd55131317e

SHA1:

f382ccff0cea933c55e5f16017b2f0e8bef7b9b6

Base64:

4Zar