Unicode Finder

"ᴈ" U+1D08(LATIN SMALL LETTER TURNED OPEN E)

U+1D08
Nama Blok
Phonetic Extensions
Nama
LATIN SMALL LETTER TURNED OPEN E

Programming

C
\u1D08
JavaScript
\u1D08
Java
\u1D08
Json
\u1D08
Python
\u1D08
Perl
\x{1D08}
PHP
\x{1D08}
Ruby
\u{1D08}
Rust
\u{1D08}
Go
\u1D08

Web

CSS
\001D08
HtmlDecimal
ᴈ
HtmlHexadecimal
ᴈ
Url
%E1%B4%88

Code

MD5
491a3f93578b6307b7db2c24cef5a6b3
Sha1
fbb028565e81ea6a0c32ecd89c4f29e23007b99f
Base64
4bSI

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u1D08';
console.log(char);  // Output: ᴈ

Java:

char c = '\u1D08';
System.out.println(c);  // Output: ᴈ

JSON:

{"text": "\u1D08"}  // Value: ᴈ

Python:

char = '\u1D08'
print(char)  # Output: ᴈ

Perl:

my $char = "\x{1D08}";
print $char;  # Output: ᴈ

PHP:

$char = "\x{1D08}";
echo $char;  // Output: ᴈ

Ruby:

char = "\u{1D08}"
puts char  # Output: ᴈ

Rust:

let c = '\u{1D08}';
println!("{}", c);  // Output: ᴈ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001D08";  /* Display: ᴈ */
}

HTML Decimal:

<p>HTML decimal: &#7432;</p>  <!-- Display: ᴈ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D08;</p>  <!-- Display: ᴈ -->

URL Encoding:

// ᴈ URL encoding
https://unicodefinder.com/search.php?query=%E1%B4%88

Encodings

MD5:

491a3f93578b6307b7db2c24cef5a6b3

SHA1:

fbb028565e81ea6a0c32ecd89c4f29e23007b99f

Base64:

4bSI