Unicode Finder

"ᕉ" U+1549(CANADIAN SYLLABICS ROO)

U+1549
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS ROO

Programming

C
\u1549
JavaScript
\u1549
Java
\u1549
Json
\u1549
Python
\u1549
Perl
\x{1549}
PHP
\x{1549}
Ruby
\u{1549}
Rust
\u{1549}
Go
\u1549

Web

CSS
\001549
HtmlDecimal
ᕉ
HtmlHexadecimal
ᕉ
Url
%E1%95%89

Code

MD5
a2a25eed00b45f97e2a53c00f12c4c56
Sha1
10efdc0230afd603866ff2002044dde85574e13e
Base64
4ZWJ

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1549';
console.log(char);  // Output: ᕉ

Java:

char c = '\u1549';
System.out.println(c);  // Output: ᕉ

JSON:

{"text": "\u1549"}  // Value: ᕉ

Python:

char = '\u1549'
print(char)  # Output: ᕉ

Perl:

my $char = "\x{1549}";
print $char;  # Output: ᕉ

PHP:

$char = "\x{1549}";
echo $char;  // Output: ᕉ

Ruby:

char = "\u{1549}"
puts char  # Output: ᕉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001549";  /* Display: ᕉ */
}

HTML Decimal:

<p>HTML decimal: &#5449;</p>  <!-- Display: ᕉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1549;</p>  <!-- Display: ᕉ -->

URL Encoding:

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

Encodings

MD5:

a2a25eed00b45f97e2a53c00f12c4c56

SHA1:

10efdc0230afd603866ff2002044dde85574e13e

Base64:

4ZWJ