Unicode Finder

"ꭉ" U+AB49(LATIN SMALL LETTER R WITH CROSSED-TAIL)

U+AB49
ブロック名
Unknown Block
名前
LATIN SMALL LETTER R WITH CROSSED-TAIL

Programming

C
\uAB49
JavaScript
\uAB49
Java
\uAB49
Json
\uAB49
Python
\uAB49
Perl
\x{AB49}
PHP
\x{AB49}
Ruby
\u{AB49}
Rust
\u{AB49}
Go
\uAB49

Web

CSS
\00AB49
HtmlDecimal
ꭉ
HtmlHexadecimal
ꭉ
Url
%EA%AD%89

Code

MD5
3838c23edfca66c19124fc3014f5d0c2
Sha1
66160345291f0b852f8f788a980927869e85842f
Base64
6q2J

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB49';
console.log(char);  // Output: ꭉ

Java:

char c = '\uAB49';
System.out.println(c);  // Output: ꭉ

JSON:

{"text": "\uAB49"}  // Value: ꭉ

Python:

char = '\uAB49'
print(char)  # Output: ꭉ

Perl:

my $char = "\x{AB49}";
print $char;  # Output: ꭉ

PHP:

$char = "\x{AB49}";
echo $char;  // Output: ꭉ

Ruby:

char = "\u{AB49}"
puts char  # Output: ꭉ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43849;</p>  <!-- Display: ꭉ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB49;</p>  <!-- Display: ꭉ -->

URL Encoding:

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

Encodings

MD5:

3838c23edfca66c19124fc3014f5d0c2

SHA1:

66160345291f0b852f8f788a980927869e85842f

Base64:

6q2J