Unicode Finder

"ꭒ" U+AB52(LATIN SMALL LETTER U WITH LEFT HOOK)

U+AB52
ブロック名
Unknown Block
名前
LATIN SMALL LETTER U WITH LEFT HOOK

Programming

C
\uAB52
JavaScript
\uAB52
Java
\uAB52
Json
\uAB52
Python
\uAB52
Perl
\x{AB52}
PHP
\x{AB52}
Ruby
\u{AB52}
Rust
\u{AB52}
Go
\uAB52

Web

CSS
\00AB52
HtmlDecimal
ꭒ
HtmlHexadecimal
ꭒ
Url
%EA%AD%92

Code

MD5
ee58dcf703b2368fcf01040bd0636da3
Sha1
266f8e7e6d5b36db6f61f2f3754ffa1c53f1ad2a
Base64
6q2S

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB52';
console.log(char);  // Output: ꭒ

Java:

char c = '\uAB52';
System.out.println(c);  // Output: ꭒ

JSON:

{"text": "\uAB52"}  // Value: ꭒ

Python:

char = '\uAB52'
print(char)  # Output: ꭒ

Perl:

my $char = "\x{AB52}";
print $char;  # Output: ꭒ

PHP:

$char = "\x{AB52}";
echo $char;  // Output: ꭒ

Ruby:

char = "\u{AB52}"
puts char  # Output: ꭒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43858;</p>  <!-- Display: ꭒ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB52;</p>  <!-- Display: ꭒ -->

URL Encoding:

// ꭒ URL encoding
https://unicodefinder.com/search.php?query=%EA%AD%92

Encodings

MD5:

ee58dcf703b2368fcf01040bd0636da3

SHA1:

266f8e7e6d5b36db6f61f2f3754ffa1c53f1ad2a

Base64:

6q2S