Unicode Finder

"ᐔ" U+1414(CANADIAN SYLLABICS WOO)

U+1414
שם בלוק
Unified Canadian Aboriginal Syllabics
שם
CANADIAN SYLLABICS WOO

Programming

C
\u1414
JavaScript
\u1414
Java
\u1414
Json
\u1414
Python
\u1414
Perl
\x{1414}
PHP
\x{1414}
Ruby
\u{1414}
Rust
\u{1414}
Go
\u1414

Web

CSS
\001414
HtmlDecimal
ᐔ
HtmlHexadecimal
ᐔ
Url
%E1%90%94

Code

MD5
a8f38cf2e1f20d4dea2b72b72e507acd
Sha1
767294702ec7e866f8a479ca914e875d05352546
Base64
4ZCU

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

Programming Languages

C:

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

JavaScript:

const char = '\u1414';
console.log(char);  // Output: ᐔ

Java:

char c = '\u1414';
System.out.println(c);  // Output: ᐔ

JSON:

{"text": "\u1414"}  // Value: ᐔ

Python:

char = '\u1414'
print(char)  # Output: ᐔ

Perl:

my $char = "\x{1414}";
print $char;  # Output: ᐔ

PHP:

$char = "\x{1414}";
echo $char;  // Output: ᐔ

Ruby:

char = "\u{1414}"
puts char  # Output: ᐔ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001414";  /* Display: ᐔ */
}

HTML Decimal:

<p>HTML decimal: &#5140;</p>  <!-- Display: ᐔ -->

HTML Hexadecimal:

<p>HTML hex: &#x1414;</p>  <!-- Display: ᐔ -->

URL Encoding:

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

Encodings

MD5:

a8f38cf2e1f20d4dea2b72b72e507acd

SHA1:

767294702ec7e866f8a479ca914e875d05352546

Base64:

4ZCU