Unicode Finder

"ᴓ" U+1D13(LATIN SMALL LETTER SIDEWAYS O WITH STROKE)

U+1D13
區塊名稱
Phonetic Extensions
名稱
LATIN SMALL LETTER SIDEWAYS O WITH STROKE

Programming

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

Web

CSS
\001D13
HtmlDecimal
ᴓ
HtmlHexadecimal
ᴓ
Url
%E1%B4%93

Code

MD5
573d88a1defb95ae66646186d3078289
Sha1
8d65565b2ec0e3efd058bf6df6388e4a060b5d90
Base64
4bST

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u1D13';
console.log(char);  // Output: ᴓ

Java:

char c = '\u1D13';
System.out.println(c);  // Output: ᴓ

JSON:

{"text": "\u1D13"}  // Value: ᴓ

Python:

char = '\u1D13'
print(char)  # Output: ᴓ

Perl:

my $char = "\x{1D13}";
print $char;  # Output: ᴓ

PHP:

$char = "\x{1D13}";
echo $char;  // Output: ᴓ

Ruby:

char = "\u{1D13}"
puts char  # Output: ᴓ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7443;</p>  <!-- Display: ᴓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1D13;</p>  <!-- Display: ᴓ -->

URL Encoding:

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

Encodings

MD5:

573d88a1defb95ae66646186d3078289

SHA1:

8d65565b2ec0e3efd058bf6df6388e4a060b5d90

Base64:

4bST