Unicode Finder

"Ʞ" U+A7B0(LATIN CAPITAL LETTER TURNED K)

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

Programming

C
\uA7B0
JavaScript
\uA7B0
Java
\uA7B0
Json
\uA7B0
Python
\uA7B0
Perl
\x{A7B0}
PHP
\x{A7B0}
Ruby
\u{A7B0}
Rust
\u{A7B0}
Go
\uA7B0

Web

CSS
\00A7B0
HtmlDecimal
Ʞ
HtmlHexadecimal
Ʞ
Url
%EA%9E%B0

Code

MD5
d4646f8f9cb57139214edbc3ba0fdb49
Sha1
746f51007b361503b2c41ad4b1b81a30e70d31a2
Base64
6p6w

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA7B0';
console.log(char);  // Output: Ʞ

Java:

char c = '\uA7B0';
System.out.println(c);  // Output: Ʞ

JSON:

{"text": "\uA7B0"}  // Value: Ʞ

Python:

char = '\uA7B0'
print(char)  # Output: Ʞ

Perl:

my $char = "\x{A7B0}";
print $char;  # Output: Ʞ

PHP:

$char = "\x{A7B0}";
echo $char;  // Output: Ʞ

Ruby:

char = "\u{A7B0}"
puts char  # Output: Ʞ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42928;</p>  <!-- Display: Ʞ -->

HTML Hexadecimal:

<p>HTML hex: &#xA7B0;</p>  <!-- Display: Ʞ -->

URL Encoding:

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

Encodings

MD5:

d4646f8f9cb57139214edbc3ba0fdb49

SHA1:

746f51007b361503b2c41ad4b1b81a30e70d31a2

Base64:

6p6w