Unicode Finder

"ꝫ" U+A76B(LATIN SMALL LETTER ET)

U+A76B
ブロック名
Latin Extended-D
名前
LATIN SMALL LETTER ET

Programming

C
\uA76B
JavaScript
\uA76B
Java
\uA76B
Json
\uA76B
Python
\uA76B
Perl
\x{A76B}
PHP
\x{A76B}
Ruby
\u{A76B}
Rust
\u{A76B}
Go
\uA76B

Web

CSS
\00A76B
HtmlDecimal
ꝫ
HtmlHexadecimal
ꝫ
Url
%EA%9D%AB

Code

MD5
d5b63bc80e4192111dacd12eaf5977f2
Sha1
ef9d76c1d63beb4e373a73c166907205440c2bc3
Base64
6p2r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA76B';
console.log(char);  // Output: ꝫ

Java:

char c = '\uA76B';
System.out.println(c);  // Output: ꝫ

JSON:

{"text": "\uA76B"}  // Value: ꝫ

Python:

char = '\uA76B'
print(char)  # Output: ꝫ

Perl:

my $char = "\x{A76B}";
print $char;  # Output: ꝫ

PHP:

$char = "\x{A76B}";
echo $char;  // Output: ꝫ

Ruby:

char = "\u{A76B}"
puts char  # Output: ꝫ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42859;</p>  <!-- Display: ꝫ -->

HTML Hexadecimal:

<p>HTML hex: &#xA76B;</p>  <!-- Display: ꝫ -->

URL Encoding:

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

Encodings

MD5:

d5b63bc80e4192111dacd12eaf5977f2

SHA1:

ef9d76c1d63beb4e373a73c166907205440c2bc3

Base64:

6p2r