Unicode Finder

"ᜃ" U+1703(TAGALOG LETTER KA)

U+1703
区块名称
Tagalog
名称
TAGALOG LETTER KA

Programming

C
\u1703
JavaScript
\u1703
Java
\u1703
Json
\u1703
Python
\u1703
Perl
\x{1703}
PHP
\x{1703}
Ruby
\u{1703}
Rust
\u{1703}
Go
\u1703

Web

CSS
\001703
HtmlDecimal
ᜃ
HtmlHexadecimal
ᜃ
Url
%E1%9C%83

Code

MD5
3aad1789830b47e560bbc47bd702ae32
Sha1
d7c84610e223da66078d48f33d2ca0a2a2b3fa32
Base64
4ZyD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1703';
console.log(char);  // Output: ᜃ

Java:

char c = '\u1703';
System.out.println(c);  // Output: ᜃ

JSON:

{"text": "\u1703"}  // Value: ᜃ

Python:

char = '\u1703'
print(char)  # Output: ᜃ

Perl:

my $char = "\x{1703}";
print $char;  # Output: ᜃ

PHP:

$char = "\x{1703}";
echo $char;  // Output: ᜃ

Ruby:

char = "\u{1703}"
puts char  # Output: ᜃ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001703";  /* Display: ᜃ */
}

HTML Decimal:

<p>HTML decimal: &#5891;</p>  <!-- Display: ᜃ -->

HTML Hexadecimal:

<p>HTML hex: &#x1703;</p>  <!-- Display: ᜃ -->

URL Encoding:

// ᜃ URL encoding
https://unicodefinder.com/search.php?query=%E1%9C%83

Encodings

MD5:

3aad1789830b47e560bbc47bd702ae32

SHA1:

d7c84610e223da66078d48f33d2ca0a2a2b3fa32

Base64:

4ZyD