Unicode Finder

"ᔖ" U+1516(CANADIAN SYLLABICS SHAA)

U+1516
Nume Bloc
Unified Canadian Aboriginal Syllabics
Nume
CANADIAN SYLLABICS SHAA

Programming

C
\u1516
JavaScript
\u1516
Java
\u1516
Json
\u1516
Python
\u1516
Perl
\x{1516}
PHP
\x{1516}
Ruby
\u{1516}
Rust
\u{1516}
Go
\u1516

Web

CSS
\001516
HtmlDecimal
ᔖ
HtmlHexadecimal
ᔖ
Url
%E1%94%96

Code

MD5
1d1061416afd95763d0024ce8c45fba7
Sha1
20e3710b7d98d82493a9d0bc770ce463a5b00584
Base64
4ZSW

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u1516';
console.log(char);  // Output: ᔖ

Java:

char c = '\u1516';
System.out.println(c);  // Output: ᔖ

JSON:

{"text": "\u1516"}  // Value: ᔖ

Python:

char = '\u1516'
print(char)  # Output: ᔖ

Perl:

my $char = "\x{1516}";
print $char;  # Output: ᔖ

PHP:

$char = "\x{1516}";
echo $char;  // Output: ᔖ

Ruby:

char = "\u{1516}"
puts char  # Output: ᔖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001516";  /* Display: ᔖ */
}

HTML Decimal:

<p>HTML decimal: &#5398;</p>  <!-- Display: ᔖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1516;</p>  <!-- Display: ᔖ -->

URL Encoding:

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

Encodings

MD5:

1d1061416afd95763d0024ce8c45fba7

SHA1:

20e3710b7d98d82493a9d0bc770ce463a5b00584

Base64:

4ZSW