Unicode Finder

"ᔦ" U+1526(CANADIAN SYLLABICS YE)

U+1526
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS YE

Programming

C
\u1526
JavaScript
\u1526
Java
\u1526
Json
\u1526
Python
\u1526
Perl
\x{1526}
PHP
\x{1526}
Ruby
\u{1526}
Rust
\u{1526}
Go
\u1526

Web

CSS
\001526
HtmlDecimal
ᔦ
HtmlHexadecimal
ᔦ
Url
%E1%94%A6

Code

MD5
64e0972e69be98de41f0544988d52227
Sha1
1f39e290a38e70f784d6f51830bf9d174667e444
Base64
4ZSm

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1526';
console.log(char);  // Output: ᔦ

Java:

char c = '\u1526';
System.out.println(c);  // Output: ᔦ

JSON:

{"text": "\u1526"}  // Value: ᔦ

Python:

char = '\u1526'
print(char)  # Output: ᔦ

Perl:

my $char = "\x{1526}";
print $char;  # Output: ᔦ

PHP:

$char = "\x{1526}";
echo $char;  // Output: ᔦ

Ruby:

char = "\u{1526}"
puts char  # Output: ᔦ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001526";  /* Display: ᔦ */
}

HTML Decimal:

<p>HTML decimal: &#5414;</p>  <!-- Display: ᔦ -->

HTML Hexadecimal:

<p>HTML hex: &#x1526;</p>  <!-- Display: ᔦ -->

URL Encoding:

// ᔦ URL encoding
https://unicodefinder.com/search.php?query=%E1%94%A6

Encodings

MD5:

64e0972e69be98de41f0544988d52227

SHA1:

1f39e290a38e70f784d6f51830bf9d174667e444

Base64:

4ZSm