Unicode Finder

"ᔠ" U+1520(CANADIAN SYLLABICS WEST-CREE SHWOO)

U+1520
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS WEST-CREE SHWOO

Programming

C
\u1520
JavaScript
\u1520
Java
\u1520
Json
\u1520
Python
\u1520
Perl
\x{1520}
PHP
\x{1520}
Ruby
\u{1520}
Rust
\u{1520}
Go
\u1520

Web

CSS
\001520
HtmlDecimal
ᔠ
HtmlHexadecimal
ᔠ
Url
%E1%94%A0

Code

MD5
053363bb6dff315cea95c1eb473770a6
Sha1
d21bfd1673ba824c50a59d7f0f962316c8882283
Base64
4ZSg

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1520';
console.log(char);  // Output: ᔠ

Java:

char c = '\u1520';
System.out.println(c);  // Output: ᔠ

JSON:

{"text": "\u1520"}  // Value: ᔠ

Python:

char = '\u1520'
print(char)  # Output: ᔠ

Perl:

my $char = "\x{1520}";
print $char;  # Output: ᔠ

PHP:

$char = "\x{1520}";
echo $char;  // Output: ᔠ

Ruby:

char = "\u{1520}"
puts char  # Output: ᔠ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001520";  /* Display: ᔠ */
}

HTML Decimal:

<p>HTML decimal: &#5408;</p>  <!-- Display: ᔠ -->

HTML Hexadecimal:

<p>HTML hex: &#x1520;</p>  <!-- Display: ᔠ -->

URL Encoding:

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

Encodings

MD5:

053363bb6dff315cea95c1eb473770a6

SHA1:

d21bfd1673ba824c50a59d7f0f962316c8882283

Base64:

4ZSg