Unicode Finder

"ᑖ" U+1456(CANADIAN SYLLABICS TAA)

U+1456
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS TAA

Programming

C
\u1456
JavaScript
\u1456
Java
\u1456
Json
\u1456
Python
\u1456
Perl
\x{1456}
PHP
\x{1456}
Ruby
\u{1456}
Rust
\u{1456}
Go
\u1456

Web

CSS
\001456
HtmlDecimal
ᑖ
HtmlHexadecimal
ᑖ
Url
%E1%91%96

Code

MD5
5aca93032ef521111e66b2cb42a6572c
Sha1
a7f469d5f4b798bfe5ab37c508cd35ebbbfc5405
Base64
4ZGW

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1456';
console.log(char);  // Output: ᑖ

Java:

char c = '\u1456';
System.out.println(c);  // Output: ᑖ

JSON:

{"text": "\u1456"}  // Value: ᑖ

Python:

char = '\u1456'
print(char)  # Output: ᑖ

Perl:

my $char = "\x{1456}";
print $char;  # Output: ᑖ

PHP:

$char = "\x{1456}";
echo $char;  // Output: ᑖ

Ruby:

char = "\u{1456}"
puts char  # Output: ᑖ

Rust:

let c = '\u{1456}';
println!("{}", c);  // Output: ᑖ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001456";  /* Display: ᑖ */
}

HTML Decimal:

<p>HTML decimal: &#5206;</p>  <!-- Display: ᑖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1456;</p>  <!-- Display: ᑖ -->

URL Encoding:

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

Encodings

MD5:

5aca93032ef521111e66b2cb42a6572c

SHA1:

a7f469d5f4b798bfe5ab37c508cd35ebbbfc5405

Base64:

4ZGW