Unicode Finder

"ᥓ" U+1953(TAI LE LETTER TSA)

U+1953
שם בלוק
Tai Le
שם
TAI LE LETTER TSA

Programming

C
\u1953
JavaScript
\u1953
Java
\u1953
Json
\u1953
Python
\u1953
Perl
\x{1953}
PHP
\x{1953}
Ruby
\u{1953}
Rust
\u{1953}
Go
\u1953

Web

CSS
\001953
HtmlDecimal
ᥓ
HtmlHexadecimal
ᥓ
Url
%E1%A5%93

Code

MD5
74ac41b4de2f7995f8ba1ea6a329f674
Sha1
00dc3f6acf8ad0002fc89bc5e14881a878f09f4b
Base64
4aWT

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

Programming Languages

C:

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

JavaScript:

const char = '\u1953';
console.log(char);  // Output: ᥓ

Java:

char c = '\u1953';
System.out.println(c);  // Output: ᥓ

JSON:

{"text": "\u1953"}  // Value: ᥓ

Python:

char = '\u1953'
print(char)  # Output: ᥓ

Perl:

my $char = "\x{1953}";
print $char;  # Output: ᥓ

PHP:

$char = "\x{1953}";
echo $char;  // Output: ᥓ

Ruby:

char = "\u{1953}"
puts char  # Output: ᥓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001953";  /* Display: ᥓ */
}

HTML Decimal:

<p>HTML decimal: &#6483;</p>  <!-- Display: ᥓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1953;</p>  <!-- Display: ᥓ -->

URL Encoding:

// ᥓ URL encoding
https://unicodefinder.com/search.php?query=%E1%A5%93

Encodings

MD5:

74ac41b4de2f7995f8ba1ea6a329f674

SHA1:

00dc3f6acf8ad0002fc89bc5e14881a878f09f4b

Base64:

4aWT