Unicode Finder

"ʖ" U+0296(LATIN LETTER INVERTED GLOTTAL STOP)

ʖ
U+0296
ブロック名
IPA Extensions
名前
LATIN LETTER INVERTED GLOTTAL STOP

Programming

C
\u0296
JavaScript
\u0296
Java
\u0296
Json
\u0296
Python
\u0296
Perl
\x{0296}
PHP
\x{0296}
Ruby
\u{0296}
Rust
\u{296}
Go
\u0296

Web

CSS
\000296
HtmlDecimal
ʖ
HtmlHexadecimal
ʖ
Url
%CA%96

Code

MD5
a7f69fd62010e4f9824b4ac4f2ff595e
Sha1
4df3eddb4817e269496c50f999734d73ec2a2d06
Base64
ypY=

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u0296';
console.log(char);  // Output: ʖ

Java:

char c = '\u0296';
System.out.println(c);  // Output: ʖ

JSON:

{"text": "\u0296"}  // Value: ʖ

Python:

char = '\u0296'
print(char)  # Output: ʖ

Perl:

my $char = "\x{0296}";
print $char;  # Output: ʖ

PHP:

$char = "\x{0296}";
echo $char;  // Output: ʖ

Ruby:

char = "\u{0296}"
puts char  # Output: ʖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000296";  /* Display: ʖ */
}

HTML Decimal:

<p>HTML decimal: &#662;</p>  <!-- Display: ʖ -->

HTML Hexadecimal:

<p>HTML hex: &#x0296;</p>  <!-- Display: ʖ -->

URL Encoding:

// ʖ URL encoding
https://unicodefinder.com/search.php?query=%CA%96

Encodings

MD5:

a7f69fd62010e4f9824b4ac4f2ff595e

SHA1:

4df3eddb4817e269496c50f999734d73ec2a2d06

Base64:

ypY=