Unicode Finder

"ᐇ" U+1407(CANADIAN SYLLABICS Y-CREE OO)

U+1407
Blokk Neve
Unified Canadian Aboriginal Syllabics
Név
CANADIAN SYLLABICS Y-CREE OO

Programming

C
\u1407
JavaScript
\u1407
Java
\u1407
Json
\u1407
Python
\u1407
Perl
\x{1407}
PHP
\x{1407}
Ruby
\u{1407}
Rust
\u{1407}
Go
\u1407

Web

CSS
\001407
HtmlDecimal
ᐇ
HtmlHexadecimal
ᐇ
Url
%E1%90%87

Code

MD5
de0b3184e2943a6014f5e92d616e1b9d
Sha1
f3b7026ee65bc8262c05bdf64bbccc4d85ade446
Base64
4ZCH

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u1407';
console.log(char);  // Output: ᐇ

Java:

char c = '\u1407';
System.out.println(c);  // Output: ᐇ

JSON:

{"text": "\u1407"}  // Value: ᐇ

Python:

char = '\u1407'
print(char)  # Output: ᐇ

Perl:

my $char = "\x{1407}";
print $char;  # Output: ᐇ

PHP:

$char = "\x{1407}";
echo $char;  // Output: ᐇ

Ruby:

char = "\u{1407}"
puts char  # Output: ᐇ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001407";  /* Display: ᐇ */
}

HTML Decimal:

<p>HTML decimal: &#5127;</p>  <!-- Display: ᐇ -->

HTML Hexadecimal:

<p>HTML hex: &#x1407;</p>  <!-- Display: ᐇ -->

URL Encoding:

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

Encodings

MD5:

de0b3184e2943a6014f5e92d616e1b9d

SHA1:

f3b7026ee65bc8262c05bdf64bbccc4d85ade446

Base64:

4ZCH