Unicode Finder

"ᑊ" U+144A(CANADIAN SYLLABICS WEST-CREE P)

U+144A
ब्लॉक का नाम
Unified Canadian Aboriginal Syllabics
नाम
CANADIAN SYLLABICS WEST-CREE P

Programming

C
\u144A
JavaScript
\u144A
Java
\u144A
Json
\u144A
Python
\u144A
Perl
\x{144A}
PHP
\x{144A}
Ruby
\u{144A}
Rust
\u{144A}
Go
\u144A

Web

CSS
\00144A
HtmlDecimal
ᑊ
HtmlHexadecimal
ᑊ
Url
%E1%91%8A

Code

MD5
373a4e8bd87a0646f4cb717e66953ed5
Sha1
77fb0bda21634e087d48389235ab103a1418db12
Base64
4ZGK

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u144A';
console.log(char);  // Output: ᑊ

Java:

char c = '\u144A';
System.out.println(c);  // Output: ᑊ

JSON:

{"text": "\u144A"}  // Value: ᑊ

Python:

char = '\u144A'
print(char)  # Output: ᑊ

Perl:

my $char = "\x{144A}";
print $char;  # Output: ᑊ

PHP:

$char = "\x{144A}";
echo $char;  // Output: ᑊ

Ruby:

char = "\u{144A}"
puts char  # Output: ᑊ

Rust:

let c = '\u{144A}';
println!("{}", c);  // Output: ᑊ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00144A";  /* Display: ᑊ */
}

HTML Decimal:

<p>HTML decimal: &#5194;</p>  <!-- Display: ᑊ -->

HTML Hexadecimal:

<p>HTML hex: &#x144A;</p>  <!-- Display: ᑊ -->

URL Encoding:

// ᑊ URL encoding
https://unicodefinder.com/search.php?query=%E1%91%8A

Encodings

MD5:

373a4e8bd87a0646f4cb717e66953ed5

SHA1:

77fb0bda21634e087d48389235ab103a1418db12

Base64:

4ZGK