Unicode Finder

"ᝒ" U+1752(BUHID VOWEL SIGN I)

U+1752
Nama Blok
Buhid
Nama
BUHID VOWEL SIGN I

Programming

C
\u1752
JavaScript
\u1752
Java
\u1752
Json
\u1752
Python
\u1752
Perl
\x{1752}
PHP
\x{1752}
Ruby
\u{1752}
Rust
\u{1752}
Go
\u1752

Web

CSS
\001752
HtmlDecimal
ᝒ
HtmlHexadecimal
ᝒ
Url
%E1%9D%92

Code

MD5
1ed3a9d332718199300077f741f25e1e
Sha1
894774000aa1ce4f9fb73cde9dc80eb2118e1928
Base64
4Z2S

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1752';
console.log(char);  // Output: ᝒ

Java:

char c = '\u1752';
System.out.println(c);  // Output: ᝒ

JSON:

{"text": "\u1752"}  // Value: ᝒ

Python:

char = '\u1752'
print(char)  # Output: ᝒ

Perl:

my $char = "\x{1752}";
print $char;  # Output: ᝒ

PHP:

$char = "\x{1752}";
echo $char;  // Output: ᝒ

Ruby:

char = "\u{1752}"
puts char  # Output: ᝒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001752";  /* Display: ᝒ */
}

HTML Decimal:

<p>HTML decimal: &#5970;</p>  <!-- Display: ᝒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1752;</p>  <!-- Display: ᝒ -->

URL Encoding:

// ᝒ URL encoding
https://unicodefinder.com/search.php?query=%E1%9D%92

Encodings

MD5:

1ed3a9d332718199300077f741f25e1e

SHA1:

894774000aa1ce4f9fb73cde9dc80eb2118e1928

Base64:

4Z2S