Unicode Finder

"ꭥ" U+AB65(GREEK LETTER SMALL CAPITAL OMEGA)

U+AB65
ブロック名
Unknown Block
名前
GREEK LETTER SMALL CAPITAL OMEGA

Programming

C
\uAB65
JavaScript
\uAB65
Java
\uAB65
Json
\uAB65
Python
\uAB65
Perl
\x{AB65}
PHP
\x{AB65}
Ruby
\u{AB65}
Rust
\u{AB65}
Go
\uAB65

Web

CSS
\00AB65
HtmlDecimal
ꭥ
HtmlHexadecimal
ꭥ
Url
%EA%AD%A5

Code

MD5
e45b4dfb20d19a0701251e6ffe9f8b77
Sha1
eca179dbe67a9e54af5aacc723a00aa7217a53fd
Base64
6q2l

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAB65';
console.log(char);  // Output: ꭥ

Java:

char c = '\uAB65';
System.out.println(c);  // Output: ꭥ

JSON:

{"text": "\uAB65"}  // Value: ꭥ

Python:

char = '\uAB65'
print(char)  # Output: ꭥ

Perl:

my $char = "\x{AB65}";
print $char;  # Output: ꭥ

PHP:

$char = "\x{AB65}";
echo $char;  // Output: ꭥ

Ruby:

char = "\u{AB65}"
puts char  # Output: ꭥ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#43877;</p>  <!-- Display: ꭥ -->

HTML Hexadecimal:

<p>HTML hex: &#xAB65;</p>  <!-- Display: ꭥ -->

URL Encoding:

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

Encodings

MD5:

e45b4dfb20d19a0701251e6ffe9f8b77

SHA1:

eca179dbe67a9e54af5aacc723a00aa7217a53fd

Base64:

6q2l