Unicode Finder

"ᒙ" U+1499(CANADIAN SYLLABICS WEST-CREE CWO)

U+1499
اسم الكتلة
Unified Canadian Aboriginal Syllabics
الاسم
CANADIAN SYLLABICS WEST-CREE CWO

Programming

C
\u1499
JavaScript
\u1499
Java
\u1499
Json
\u1499
Python
\u1499
Perl
\x{1499}
PHP
\x{1499}
Ruby
\u{1499}
Rust
\u{1499}
Go
\u1499

Web

CSS
\001499
HtmlDecimal
ᒙ
HtmlHexadecimal
ᒙ
Url
%E1%92%99

Code

MD5
5838ed5e0a3f5a14a7f5f1a608f0ae73
Sha1
005a2f9ed3c7353f024b6d5e78cd11ebbec31b3c
Base64
4ZKZ

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u1499';
console.log(char);  // Output: ᒙ

Java:

char c = '\u1499';
System.out.println(c);  // Output: ᒙ

JSON:

{"text": "\u1499"}  // Value: ᒙ

Python:

char = '\u1499'
print(char)  # Output: ᒙ

Perl:

my $char = "\x{1499}";
print $char;  # Output: ᒙ

PHP:

$char = "\x{1499}";
echo $char;  // Output: ᒙ

Ruby:

char = "\u{1499}"
puts char  # Output: ᒙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001499";  /* Display: ᒙ */
}

HTML Decimal:

<p>HTML decimal: &#5273;</p>  <!-- Display: ᒙ -->

HTML Hexadecimal:

<p>HTML hex: &#x1499;</p>  <!-- Display: ᒙ -->

URL Encoding:

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

Encodings

MD5:

5838ed5e0a3f5a14a7f5f1a608f0ae73

SHA1:

005a2f9ed3c7353f024b6d5e78cd11ebbec31b3c

Base64:

4ZKZ