Unicode Finder

"Ʇ" U+A7B1(LATIN CAPITAL LETTER TURNED T)

U+A7B1
ブロック名
Latin Extended-D
名前
LATIN CAPITAL LETTER TURNED T

Programming

C
\uA7B1
JavaScript
\uA7B1
Java
\uA7B1
Json
\uA7B1
Python
\uA7B1
Perl
\x{A7B1}
PHP
\x{A7B1}
Ruby
\u{A7B1}
Rust
\u{A7B1}
Go
\uA7B1

Web

CSS
\00A7B1
HtmlDecimal
Ʇ
HtmlHexadecimal
Ʇ
Url
%EA%9E%B1

Code

MD5
52a006d250810698b1d6b48fdf698813
Sha1
1e989f7c936d4c88e6958dd920ac3e85f784382b
Base64
6p6x

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA7B1';
console.log(char);  // Output: Ʇ

Java:

char c = '\uA7B1';
System.out.println(c);  // Output: Ʇ

JSON:

{"text": "\uA7B1"}  // Value: Ʇ

Python:

char = '\uA7B1'
print(char)  # Output: Ʇ

Perl:

my $char = "\x{A7B1}";
print $char;  # Output: Ʇ

PHP:

$char = "\x{A7B1}";
echo $char;  // Output: Ʇ

Ruby:

char = "\u{A7B1}"
puts char  # Output: Ʇ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42929;</p>  <!-- Display: Ʇ -->

HTML Hexadecimal:

<p>HTML hex: &#xA7B1;</p>  <!-- Display: Ʇ -->

URL Encoding:

// Ʇ URL encoding
https://unicodefinder.com/search.php?query=%EA%9E%B1

Encodings

MD5:

52a006d250810698b1d6b48fdf698813

SHA1:

1e989f7c936d4c88e6958dd920ac3e85f784382b

Base64:

6p6x