Unicode Finder

"ᑜ" U+145C(CANADIAN SYLLABICS WEST-CREE TWII)

U+145C
שם בלוק
Unified Canadian Aboriginal Syllabics
שם
CANADIAN SYLLABICS WEST-CREE TWII

Programming

C
\u145C
JavaScript
\u145C
Java
\u145C
Json
\u145C
Python
\u145C
Perl
\x{145C}
PHP
\x{145C}
Ruby
\u{145C}
Rust
\u{145C}
Go
\u145C

Web

CSS
\00145C
HtmlDecimal
ᑜ
HtmlHexadecimal
ᑜ
Url
%E1%91%9C

Code

MD5
77c9908370fa80f338d2abb8145a49ac
Sha1
56c06e29c1af1aebbbf124805cf6cfb90467a43f
Base64
4ZGc

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u145C';
console.log(char);  // Output: ᑜ

Java:

char c = '\u145C';
System.out.println(c);  // Output: ᑜ

JSON:

{"text": "\u145C"}  // Value: ᑜ

Python:

char = '\u145C'
print(char)  # Output: ᑜ

Perl:

my $char = "\x{145C}";
print $char;  # Output: ᑜ

PHP:

$char = "\x{145C}";
echo $char;  // Output: ᑜ

Ruby:

char = "\u{145C}"
puts char  # Output: ᑜ

Rust:

let c = '\u{145C}';
println!("{}", c);  // Output: ᑜ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00145C";  /* Display: ᑜ */
}

HTML Decimal:

<p>HTML decimal: &#5212;</p>  <!-- Display: ᑜ -->

HTML Hexadecimal:

<p>HTML hex: &#x145C;</p>  <!-- Display: ᑜ -->

URL Encoding:

// ᑜ URL encoding
https://unicodefinder.com/search.php?query=%E1%91%9C

Encodings

MD5:

77c9908370fa80f338d2abb8145a49ac

SHA1:

56c06e29c1af1aebbbf124805cf6cfb90467a43f

Base64:

4ZGc