Unicode Finder

"ᜳ" U+1733(HANUNOO VOWEL SIGN U)

U+1733
区块名称
Hanunoo
名称
HANUNOO VOWEL SIGN U

Programming

C
\u1733
JavaScript
\u1733
Java
\u1733
Json
\u1733
Python
\u1733
Perl
\x{1733}
PHP
\x{1733}
Ruby
\u{1733}
Rust
\u{1733}
Go
\u1733

Web

CSS
\001733
HtmlDecimal
ᜳ
HtmlHexadecimal
ᜳ
Url
%E1%9C%B3

Code

MD5
cb2016a0ccbc9a1a3baa34735bef6add
Sha1
da3e96982654e2d1861a6a2fca08d0cf28f1b8b9
Base64
4Zyz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1733';
console.log(char);  // Output: ᜳ

Java:

char c = '\u1733';
System.out.println(c);  // Output: ᜳ

JSON:

{"text": "\u1733"}  // Value: ᜳ

Python:

char = '\u1733'
print(char)  # Output: ᜳ

Perl:

my $char = "\x{1733}";
print $char;  # Output: ᜳ

PHP:

$char = "\x{1733}";
echo $char;  // Output: ᜳ

Ruby:

char = "\u{1733}"
puts char  # Output: ᜳ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001733";  /* Display: ᜳ */
}

HTML Decimal:

<p>HTML decimal: &#5939;</p>  <!-- Display: ᜳ -->

HTML Hexadecimal:

<p>HTML hex: &#x1733;</p>  <!-- Display: ᜳ -->

URL Encoding:

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

Encodings

MD5:

cb2016a0ccbc9a1a3baa34735bef6add

SHA1:

da3e96982654e2d1861a6a2fca08d0cf28f1b8b9

Base64:

4Zyz