Unicode Finder

"ꜝ" U+A71D(MODIFIER LETTER RAISED EXCLAMATION MARK)

U+A71D
ブロック名
Modifier Tone Letters
名前
MODIFIER LETTER RAISED EXCLAMATION MARK

Programming

C
\uA71D
JavaScript
\uA71D
Java
\uA71D
Json
\uA71D
Python
\uA71D
Perl
\x{A71D}
PHP
\x{A71D}
Ruby
\u{A71D}
Rust
\u{A71D}
Go
\uA71D

Web

CSS
\00A71D
HtmlDecimal
ꜝ
HtmlHexadecimal
ꜝ
Url
%EA%9C%9D

Code

MD5
c46f300b575d04e9b0458cd9b4880f2d
Sha1
115ece5c16f5e13295eff9739bdcc48e58b4e9de
Base64
6pyd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA71D';
console.log(char);  // Output: ꜝ

Java:

char c = '\uA71D';
System.out.println(c);  // Output: ꜝ

JSON:

{"text": "\uA71D"}  // Value: ꜝ

Python:

char = '\uA71D'
print(char)  # Output: ꜝ

Perl:

my $char = "\x{A71D}";
print $char;  # Output: ꜝ

PHP:

$char = "\x{A71D}";
echo $char;  // Output: ꜝ

Ruby:

char = "\u{A71D}"
puts char  # Output: ꜝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42781;</p>  <!-- Display: ꜝ -->

HTML Hexadecimal:

<p>HTML hex: &#xA71D;</p>  <!-- Display: ꜝ -->

URL Encoding:

// ꜝ URL encoding
https://unicodefinder.com/search.php?query=%EA%9C%9D

Encodings

MD5:

c46f300b575d04e9b0458cd9b4880f2d

SHA1:

115ece5c16f5e13295eff9739bdcc48e58b4e9de

Base64:

6pyd