Unicode Finder

"ᗂ" U+15C2(CANADIAN SYLLABICS SAYISI HO)

U+15C2
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS SAYISI HO

Programming

C
\u15C2
JavaScript
\u15C2
Java
\u15C2
Json
\u15C2
Python
\u15C2
Perl
\x{15C2}
PHP
\x{15C2}
Ruby
\u{15C2}
Rust
\u{15C2}
Go
\u15C2

Web

CSS
\0015C2
HtmlDecimal
ᗂ
HtmlHexadecimal
ᗂ
Url
%E1%97%82

Code

MD5
a81bed237d465a17eee67b6eaa917c7a
Sha1
b19e78af4068d94f143be68bbb00e440d966c684
Base64
4ZeC

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u15C2';
console.log(char);  // Output: ᗂ

Java:

char c = '\u15C2';
System.out.println(c);  // Output: ᗂ

JSON:

{"text": "\u15C2"}  // Value: ᗂ

Python:

char = '\u15C2'
print(char)  # Output: ᗂ

Perl:

my $char = "\x{15C2}";
print $char;  # Output: ᗂ

PHP:

$char = "\x{15C2}";
echo $char;  // Output: ᗂ

Ruby:

char = "\u{15C2}"
puts char  # Output: ᗂ

Rust:

let c = '\u{15C2}';
println!("{}", c);  // Output: ᗂ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0015C2";  /* Display: ᗂ */
}

HTML Decimal:

<p>HTML decimal: &#5570;</p>  <!-- Display: ᗂ -->

HTML Hexadecimal:

<p>HTML hex: &#x15C2;</p>  <!-- Display: ᗂ -->

URL Encoding:

// ᗂ URL encoding
https://unicodefinder.com/search.php?query=%E1%97%82

Encodings

MD5:

a81bed237d465a17eee67b6eaa917c7a

SHA1:

b19e78af4068d94f143be68bbb00e440d966c684

Base64:

4ZeC