Unicode Finder

"ᜰ" U+1730(HANUNOO LETTER SA)

U+1730
Nama Blok
Hanunoo
Nama
HANUNOO LETTER SA

Programming

C
\u1730
JavaScript
\u1730
Java
\u1730
Json
\u1730
Python
\u1730
Perl
\x{1730}
PHP
\x{1730}
Ruby
\u{1730}
Rust
\u{1730}
Go
\u1730

Web

CSS
\001730
HtmlDecimal
ᜰ
HtmlHexadecimal
ᜰ
Url
%E1%9C%B0

Code

MD5
2c3870c91802a97a11ab56d89e0af833
Sha1
c7aef3dfc9ddd0a5b2d44dc75e447d914e86af9e
Base64
4Zyw

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1730';
console.log(char);  // Output: ᜰ

Java:

char c = '\u1730';
System.out.println(c);  // Output: ᜰ

JSON:

{"text": "\u1730"}  // Value: ᜰ

Python:

char = '\u1730'
print(char)  # Output: ᜰ

Perl:

my $char = "\x{1730}";
print $char;  # Output: ᜰ

PHP:

$char = "\x{1730}";
echo $char;  // Output: ᜰ

Ruby:

char = "\u{1730}"
puts char  # Output: ᜰ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001730";  /* Display: ᜰ */
}

HTML Decimal:

<p>HTML decimal: &#5936;</p>  <!-- Display: ᜰ -->

HTML Hexadecimal:

<p>HTML hex: &#x1730;</p>  <!-- Display: ᜰ -->

URL Encoding:

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

Encodings

MD5:

2c3870c91802a97a11ab56d89e0af833

SHA1:

c7aef3dfc9ddd0a5b2d44dc75e447d914e86af9e

Base64:

4Zyw