Unicode Finder

"ᑡ" U+1461(CANADIAN SYLLABICS TWA)

U+1461
Nama Blok
Unified Canadian Aboriginal Syllabics
Nama
CANADIAN SYLLABICS TWA

Programming

C
\u1461
JavaScript
\u1461
Java
\u1461
Json
\u1461
Python
\u1461
Perl
\x{1461}
PHP
\x{1461}
Ruby
\u{1461}
Rust
\u{1461}
Go
\u1461

Web

CSS
\001461
HtmlDecimal
ᑡ
HtmlHexadecimal
ᑡ
Url
%E1%91%A1

Code

MD5
301261d8a1706fe5cc5b9c2292011f1f
Sha1
7f3e1548b0cd1dc1b86a097a8357ea64d6215d2b
Base64
4ZGh

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1461';
console.log(char);  // Output: ᑡ

Java:

char c = '\u1461';
System.out.println(c);  // Output: ᑡ

JSON:

{"text": "\u1461"}  // Value: ᑡ

Python:

char = '\u1461'
print(char)  # Output: ᑡ

Perl:

my $char = "\x{1461}";
print $char;  # Output: ᑡ

PHP:

$char = "\x{1461}";
echo $char;  // Output: ᑡ

Ruby:

char = "\u{1461}"
puts char  # Output: ᑡ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001461";  /* Display: ᑡ */
}

HTML Decimal:

<p>HTML decimal: &#5217;</p>  <!-- Display: ᑡ -->

HTML Hexadecimal:

<p>HTML hex: &#x1461;</p>  <!-- Display: ᑡ -->

URL Encoding:

// ᑡ URL encoding
https://unicodefinder.com/search.php?query=%E1%91%A1

Encodings

MD5:

301261d8a1706fe5cc5b9c2292011f1f

SHA1:

7f3e1548b0cd1dc1b86a097a8357ea64d6215d2b

Base64:

4ZGh