Unicode Finder

"ɂ" U+0242(LATIN SMALL LETTER GLOTTAL STOP)

ɂ
U+0242
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER GLOTTAL STOP

Programming

C
\u0242
JavaScript
\u0242
Java
\u0242
Json
\u0242
Python
\u0242
Perl
\x{0242}
PHP
\x{0242}
Ruby
\u{0242}
Rust
\u{242}
Go
\u0242

Web

CSS
\000242
HtmlDecimal
ɂ
HtmlHexadecimal
ɂ
Url
%C9%82

Code

MD5
451ef67e614f3d3189b69fcdac9562b9
Sha1
6db97c89e5eaa62e39f0d09e1c4d4ec33795ffdb
Base64
yYI=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0242';
console.log(char);  // Output: ɂ

Java:

char c = '\u0242';
System.out.println(c);  // Output: ɂ

JSON:

{"text": "\u0242"}  // Value: ɂ

Python:

char = '\u0242'
print(char)  # Output: ɂ

Perl:

my $char = "\x{0242}";
print $char;  # Output: ɂ

PHP:

$char = "\x{0242}";
echo $char;  // Output: ɂ

Ruby:

char = "\u{0242}"
puts char  # Output: ɂ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000242";  /* Display: ɂ */
}

HTML Decimal:

<p>HTML decimal: &#578;</p>  <!-- Display: ɂ -->

HTML Hexadecimal:

<p>HTML hex: &#x0242;</p>  <!-- Display: ɂ -->

URL Encoding:

// ɂ URL encoding
https://unicodefinder.com/search.php?query=%C9%82

Encodings

MD5:

451ef67e614f3d3189b69fcdac9562b9

SHA1:

6db97c89e5eaa62e39f0d09e1c4d4ec33795ffdb

Base64:

yYI=