Unicode Finder

"ᕇ" U+1547(CANADIAN SYLLABICS RII)

U+1547
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS RII

Programming

C
\u1547
JavaScript
\u1547
Java
\u1547
Json
\u1547
Python
\u1547
Perl
\x{1547}
PHP
\x{1547}
Ruby
\u{1547}
Rust
\u{1547}
Go
\u1547

Web

CSS
\001547
HtmlDecimal
ᕇ
HtmlHexadecimal
ᕇ
Url
%E1%95%87

Code

MD5
f668bf37a44c9b01f64e2b98412e0078
Sha1
e6d47812ef900ee300b0943ee47f6a91f749a1f8
Base64
4ZWH

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1547';
console.log(char);  // Output: ᕇ

Java:

char c = '\u1547';
System.out.println(c);  // Output: ᕇ

JSON:

{"text": "\u1547"}  // Value: ᕇ

Python:

char = '\u1547'
print(char)  # Output: ᕇ

Perl:

my $char = "\x{1547}";
print $char;  # Output: ᕇ

PHP:

$char = "\x{1547}";
echo $char;  // Output: ᕇ

Ruby:

char = "\u{1547}"
puts char  # Output: ᕇ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001547";  /* Display: ᕇ */
}

HTML Decimal:

<p>HTML decimal: &#5447;</p>  <!-- Display: ᕇ -->

HTML Hexadecimal:

<p>HTML hex: &#x1547;</p>  <!-- Display: ᕇ -->

URL Encoding:

// ᕇ URL encoding
https://unicodefinder.com/search.php?query=%E1%95%87

Encodings

MD5:

f668bf37a44c9b01f64e2b98412e0078

SHA1:

e6d47812ef900ee300b0943ee47f6a91f749a1f8

Base64:

4ZWH