Unicode Finder

"ᙛ" U+165B(CANADIAN SYLLABICS CARRIER TSU)

U+165B
שם בלוק
Unified Canadian Aboriginal Syllabics
שם
CANADIAN SYLLABICS CARRIER TSU

Programming

C
\u165B
JavaScript
\u165B
Java
\u165B
Json
\u165B
Python
\u165B
Perl
\x{165B}
PHP
\x{165B}
Ruby
\u{165B}
Rust
\u{165B}
Go
\u165B

Web

CSS
\00165B
HtmlDecimal
ᙛ
HtmlHexadecimal
ᙛ
Url
%E1%99%9B

Code

MD5
7af5fcb9ddf58b1e6a3565270f609dc2
Sha1
6d6555a88616169d80f91691564e6316f686a5dd
Base64
4Zmb

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

Programming Languages

C:

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

JavaScript:

const char = '\u165B';
console.log(char);  // Output: ᙛ

Java:

char c = '\u165B';
System.out.println(c);  // Output: ᙛ

JSON:

{"text": "\u165B"}  // Value: ᙛ

Python:

char = '\u165B'
print(char)  # Output: ᙛ

Perl:

my $char = "\x{165B}";
print $char;  # Output: ᙛ

PHP:

$char = "\x{165B}";
echo $char;  // Output: ᙛ

Ruby:

char = "\u{165B}"
puts char  # Output: ᙛ

Rust:

let c = '\u{165B}';
println!("{}", c);  // Output: ᙛ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00165B";  /* Display: ᙛ */
}

HTML Decimal:

<p>HTML decimal: &#5723;</p>  <!-- Display: ᙛ -->

HTML Hexadecimal:

<p>HTML hex: &#x165B;</p>  <!-- Display: ᙛ -->

URL Encoding:

// ᙛ URL encoding
https://unicodefinder.com/search.php?query=%E1%99%9B

Encodings

MD5:

7af5fcb9ddf58b1e6a3565270f609dc2

SHA1:

6d6555a88616169d80f91691564e6316f686a5dd

Base64:

4Zmb