Unicode Finder

"ᥠ" U+1960(TAI LE LETTER KHA)

U+1960
Название Блока
Tai Le
Название
TAI LE LETTER KHA

Programming

C
\u1960
JavaScript
\u1960
Java
\u1960
Json
\u1960
Python
\u1960
Perl
\x{1960}
PHP
\x{1960}
Ruby
\u{1960}
Rust
\u{1960}
Go
\u1960

Web

CSS
\001960
HtmlDecimal
ᥠ
HtmlHexadecimal
ᥠ
Url
%E1%A5%A0

Code

MD5
3d0162de85cfae454e580a59de7f40f9
Sha1
41dd4d887e85c4baa87ba34a8e20fdb3e678a4b6
Base64
4aWg

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u1960';
console.log(char);  // Output: ᥠ

Java:

char c = '\u1960';
System.out.println(c);  // Output: ᥠ

JSON:

{"text": "\u1960"}  // Value: ᥠ

Python:

char = '\u1960'
print(char)  # Output: ᥠ

Perl:

my $char = "\x{1960}";
print $char;  # Output: ᥠ

PHP:

$char = "\x{1960}";
echo $char;  // Output: ᥠ

Ruby:

char = "\u{1960}"
puts char  # Output: ᥠ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001960";  /* Display: ᥠ */
}

HTML Decimal:

<p>HTML decimal: &#6496;</p>  <!-- Display: ᥠ -->

HTML Hexadecimal:

<p>HTML hex: &#x1960;</p>  <!-- Display: ᥠ -->

URL Encoding:

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

Encodings

MD5:

3d0162de85cfae454e580a59de7f40f9

SHA1:

41dd4d887e85c4baa87ba34a8e20fdb3e678a4b6

Base64:

4aWg