Unicode Finder

"ᘒ" U+1612(CANADIAN SYLLABICS CARRIER YI)

U+1612
Bloknaam
Unified Canadian Aboriginal Syllabics
Naam
CANADIAN SYLLABICS CARRIER YI

Programming

C
\u1612
JavaScript
\u1612
Java
\u1612
Json
\u1612
Python
\u1612
Perl
\x{1612}
PHP
\x{1612}
Ruby
\u{1612}
Rust
\u{1612}
Go
\u1612

Web

CSS
\001612
HtmlDecimal
ᘒ
HtmlHexadecimal
ᘒ
Url
%E1%98%92

Code

MD5
e650d37d6633c60bbe9de20aab060359
Sha1
ea01dfeb88c0af02244239cfe07a7a81e38ec76c
Base64
4ZiS

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1612';
console.log(char);  // Output: ᘒ

Java:

char c = '\u1612';
System.out.println(c);  // Output: ᘒ

JSON:

{"text": "\u1612"}  // Value: ᘒ

Python:

char = '\u1612'
print(char)  # Output: ᘒ

Perl:

my $char = "\x{1612}";
print $char;  # Output: ᘒ

PHP:

$char = "\x{1612}";
echo $char;  // Output: ᘒ

Ruby:

char = "\u{1612}"
puts char  # Output: ᘒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001612";  /* Display: ᘒ */
}

HTML Decimal:

<p>HTML decimal: &#5650;</p>  <!-- Display: ᘒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1612;</p>  <!-- Display: ᘒ -->

URL Encoding:

// ᘒ URL encoding
https://unicodefinder.com/search.php?query=%E1%98%92

Encodings

MD5:

e650d37d6633c60bbe9de20aab060359

SHA1:

ea01dfeb88c0af02244239cfe07a7a81e38ec76c

Base64:

4ZiS