Unicode Finder

"ᥗ" U+1957(TAI LE LETTER THA)

U+1957
区块名称
Tai Le
名称
TAI LE LETTER THA

Programming

C
\u1957
JavaScript
\u1957
Java
\u1957
Json
\u1957
Python
\u1957
Perl
\x{1957}
PHP
\x{1957}
Ruby
\u{1957}
Rust
\u{1957}
Go
\u1957

Web

CSS
\001957
HtmlDecimal
ᥗ
HtmlHexadecimal
ᥗ
Url
%E1%A5%97

Code

MD5
a8ce221fdc824e40fc21eefbcf7a2555
Sha1
6575e3271897c3033878d497636b59846472ae0a
Base64
4aWX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1957';
console.log(char);  // Output: ᥗ

Java:

char c = '\u1957';
System.out.println(c);  // Output: ᥗ

JSON:

{"text": "\u1957"}  // Value: ᥗ

Python:

char = '\u1957'
print(char)  # Output: ᥗ

Perl:

my $char = "\x{1957}";
print $char;  # Output: ᥗ

PHP:

$char = "\x{1957}";
echo $char;  // Output: ᥗ

Ruby:

char = "\u{1957}"
puts char  # Output: ᥗ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001957";  /* Display: ᥗ */
}

HTML Decimal:

<p>HTML decimal: &#6487;</p>  <!-- Display: ᥗ -->

HTML Hexadecimal:

<p>HTML hex: &#x1957;</p>  <!-- Display: ᥗ -->

URL Encoding:

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

Encodings

MD5:

a8ce221fdc824e40fc21eefbcf7a2555

SHA1:

6575e3271897c3033878d497636b59846472ae0a

Base64:

4aWX