Unicode Finder

"ᐁ" U+1401(CANADIAN SYLLABICS E)

U+1401
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS E

Programming

C
\u1401
JavaScript
\u1401
Java
\u1401
Json
\u1401
Python
\u1401
Perl
\x{1401}
PHP
\x{1401}
Ruby
\u{1401}
Rust
\u{1401}
Go
\u1401

Web

CSS
\001401
HtmlDecimal
ᐁ
HtmlHexadecimal
ᐁ
Url
%E1%90%81

Code

MD5
982a2fbab2864367416f13bec4dae22a
Sha1
1a8d8e1ac1e8bbfcd8d439326872bdb6c4e703f7
Base64
4ZCB

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1401';
console.log(char);  // Output: ᐁ

Java:

char c = '\u1401';
System.out.println(c);  // Output: ᐁ

JSON:

{"text": "\u1401"}  // Value: ᐁ

Python:

char = '\u1401'
print(char)  # Output: ᐁ

Perl:

my $char = "\x{1401}";
print $char;  # Output: ᐁ

PHP:

$char = "\x{1401}";
echo $char;  // Output: ᐁ

Ruby:

char = "\u{1401}"
puts char  # Output: ᐁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001401";  /* Display: ᐁ */
}

HTML Decimal:

<p>HTML decimal: &#5121;</p>  <!-- Display: ᐁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1401;</p>  <!-- Display: ᐁ -->

URL Encoding:

// ᐁ URL encoding
https://unicodefinder.com/search.php?query=%E1%90%81

Encodings

MD5:

982a2fbab2864367416f13bec4dae22a

SHA1:

1a8d8e1ac1e8bbfcd8d439326872bdb6c4e703f7

Base64:

4ZCB