Unicode Finder

"ꭏ" U+AB4F(LATIN SMALL LETTER U BAR WITH SHORT RIGHT LEG)

U+AB4F
ブロック名
Unknown Block
名前
LATIN SMALL LETTER U BAR WITH SHORT RIGHT LEG

Programming

C
\uAB4F
JavaScript
\uAB4F
Java
\uAB4F
Json
\uAB4F
Python
\uAB4F
Perl
\x{AB4F}
PHP
\x{AB4F}
Ruby
\u{AB4F}
Rust
\u{AB4F}
Go
\uAB4F

Web

CSS
\00AB4F
HtmlDecimal
ꭏ
HtmlHexadecimal
ꭏ
Url
%EA%AD%8F

Code

MD5
e064ec600e2a7e2ee93a8576e2a8d3f7
Sha1
2a2e33cb8bcb6ccb2971bb1297212e544bf9ca0d
Base64
6q2P

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB4F';
console.log(char);  // Output: ꭏ

Java:

char c = '\uAB4F';
System.out.println(c);  // Output: ꭏ

JSON:

{"text": "\uAB4F"}  // Value: ꭏ

Python:

char = '\uAB4F'
print(char)  # Output: ꭏ

Perl:

my $char = "\x{AB4F}";
print $char;  # Output: ꭏ

PHP:

$char = "\x{AB4F}";
echo $char;  // Output: ꭏ

Ruby:

char = "\u{AB4F}"
puts char  # Output: ꭏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43855;</p>  <!-- Display: ꭏ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB4F;</p>  <!-- Display: ꭏ -->

URL Encoding:

// ꭏ URL encoding
https://unicodefinder.com/search.php?query=%EA%AD%8F

Encodings

MD5:

e064ec600e2a7e2ee93a8576e2a8d3f7

SHA1:

2a2e33cb8bcb6ccb2971bb1297212e544bf9ca0d

Base64:

6q2P