Unicode Finder

"Ꜩ" U+A728(LATIN CAPITAL LETTER TZ)

U+A728
ブロック名
Latin Extended-D
名前
LATIN CAPITAL LETTER TZ

Programming

C
\uA728
JavaScript
\uA728
Java
\uA728
Json
\uA728
Python
\uA728
Perl
\x{A728}
PHP
\x{A728}
Ruby
\u{A728}
Rust
\u{A728}
Go
\uA728

Web

CSS
\00A728
HtmlDecimal
Ꜩ
HtmlHexadecimal
Ꜩ
Url
%EA%9C%A8

Code

MD5
3f16bdf36aeeef4c1f7bee540f94f17b
Sha1
5f35bd894ea633b39cfb02c04748a94d42dd0b0b
Base64
6pyo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA728';
console.log(char);  // Output: Ꜩ

Java:

char c = '\uA728';
System.out.println(c);  // Output: Ꜩ

JSON:

{"text": "\uA728"}  // Value: Ꜩ

Python:

char = '\uA728'
print(char)  # Output: Ꜩ

Perl:

my $char = "\x{A728}";
print $char;  # Output: Ꜩ

PHP:

$char = "\x{A728}";
echo $char;  // Output: Ꜩ

Ruby:

char = "\u{A728}"
puts char  # Output: Ꜩ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42792;</p>  <!-- Display: Ꜩ -->

HTML Hexadecimal:

<p>HTML hex: &#xA728;</p>  <!-- Display: Ꜩ -->

URL Encoding:

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

Encodings

MD5:

3f16bdf36aeeef4c1f7bee540f94f17b

SHA1:

5f35bd894ea633b39cfb02c04748a94d42dd0b0b

Base64:

6pyo