Unicode Finder

"ᦆ" U+1986(NEW TAI LUE LETTER LOW XA)

U+1986
区块名称
New Tai Lue
名称
NEW TAI LUE LETTER LOW XA

Programming

C
\u1986
JavaScript
\u1986
Java
\u1986
Json
\u1986
Python
\u1986
Perl
\x{1986}
PHP
\x{1986}
Ruby
\u{1986}
Rust
\u{1986}
Go
\u1986

Web

CSS
\001986
HtmlDecimal
ᦆ
HtmlHexadecimal
ᦆ
Url
%E1%A6%86

Code

MD5
3e35867d048defeb73dc381157d08020
Sha1
c7928ba3e21113683124e387a70acac11af59255
Base64
4aaG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1986';
console.log(char);  // Output: ᦆ

Java:

char c = '\u1986';
System.out.println(c);  // Output: ᦆ

JSON:

{"text": "\u1986"}  // Value: ᦆ

Python:

char = '\u1986'
print(char)  # Output: ᦆ

Perl:

my $char = "\x{1986}";
print $char;  # Output: ᦆ

PHP:

$char = "\x{1986}";
echo $char;  // Output: ᦆ

Ruby:

char = "\u{1986}"
puts char  # Output: ᦆ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001986";  /* Display: ᦆ */
}

HTML Decimal:

<p>HTML decimal: &#6534;</p>  <!-- Display: ᦆ -->

HTML Hexadecimal:

<p>HTML hex: &#x1986;</p>  <!-- Display: ᦆ -->

URL Encoding:

// ᦆ URL encoding
https://unicodefinder.com/search.php?query=%E1%A6%86

Encodings

MD5:

3e35867d048defeb73dc381157d08020

SHA1:

c7928ba3e21113683124e387a70acac11af59255

Base64:

4aaG