Unicode Finder

"ꝏ" U+A74F(LATIN SMALL LETTER OO)

U+A74F
ブロック名
Latin Extended-D
名前
LATIN SMALL LETTER OO

Programming

C
\uA74F
JavaScript
\uA74F
Java
\uA74F
Json
\uA74F
Python
\uA74F
Perl
\x{A74F}
PHP
\x{A74F}
Ruby
\u{A74F}
Rust
\u{A74F}
Go
\uA74F

Web

CSS
\00A74F
HtmlDecimal
ꝏ
HtmlHexadecimal
ꝏ
Url
%EA%9D%8F

Code

MD5
4ca8dfb67f0ac804e7a8ff05fb34a167
Sha1
86cc6aead74511e003571a096f7001e4a695dbc5
Base64
6p2P

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA74F';
console.log(char);  // Output: ꝏ

Java:

char c = '\uA74F';
System.out.println(c);  // Output: ꝏ

JSON:

{"text": "\uA74F"}  // Value: ꝏ

Python:

char = '\uA74F'
print(char)  # Output: ꝏ

Perl:

my $char = "\x{A74F}";
print $char;  # Output: ꝏ

PHP:

$char = "\x{A74F}";
echo $char;  // Output: ꝏ

Ruby:

char = "\u{A74F}"
puts char  # Output: ꝏ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00A74F";  /* Display: ꝏ */
}

HTML Decimal:

<p>HTML decimal: &#42831;</p>  <!-- Display: ꝏ -->

HTML Hexadecimal:

<p>HTML hex: &#xA74F;</p>  <!-- Display: ꝏ -->

URL Encoding:

// ꝏ URL encoding
https://unicodefinder.com/search.php?query=%EA%9D%8F

Encodings

MD5:

4ca8dfb67f0ac804e7a8ff05fb34a167

SHA1:

86cc6aead74511e003571a096f7001e4a695dbc5

Base64:

6p2P