Unicode Finder

"ᦁ" U+1981(NEW TAI LUE LETTER LOW QA)

U+1981
区块名称
New Tai Lue
名称
NEW TAI LUE LETTER LOW QA

Programming

C
\u1981
JavaScript
\u1981
Java
\u1981
Json
\u1981
Python
\u1981
Perl
\x{1981}
PHP
\x{1981}
Ruby
\u{1981}
Rust
\u{1981}
Go
\u1981

Web

CSS
\001981
HtmlDecimal
ᦁ
HtmlHexadecimal
ᦁ
Url
%E1%A6%81

Code

MD5
c87b24a5f7c9381de55f80296b46f53e
Sha1
1c06396998a7439c8c4425a3ff9290ae52549bb4
Base64
4aaB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1981';
console.log(char);  // Output: ᦁ

Java:

char c = '\u1981';
System.out.println(c);  // Output: ᦁ

JSON:

{"text": "\u1981"}  // Value: ᦁ

Python:

char = '\u1981'
print(char)  # Output: ᦁ

Perl:

my $char = "\x{1981}";
print $char;  # Output: ᦁ

PHP:

$char = "\x{1981}";
echo $char;  // Output: ᦁ

Ruby:

char = "\u{1981}"
puts char  # Output: ᦁ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001981";  /* Display: ᦁ */
}

HTML Decimal:

<p>HTML decimal: &#6529;</p>  <!-- Display: ᦁ -->

HTML Hexadecimal:

<p>HTML hex: &#x1981;</p>  <!-- Display: ᦁ -->

URL Encoding:

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

Encodings

MD5:

c87b24a5f7c9381de55f80296b46f53e

SHA1:

1c06396998a7439c8c4425a3ff9290ae52549bb4

Base64:

4aaB