Unicode Finder

"ɓ" U+0253(LATIN SMALL LETTER B WITH HOOK)

ɓ
U+0253
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER B WITH HOOK

Programming

C
\u0253
JavaScript
\u0253
Java
\u0253
Json
\u0253
Python
\u0253
Perl
\x{0253}
PHP
\x{0253}
Ruby
\u{0253}
Rust
\u{253}
Go
\u0253

Web

CSS
\000253
HtmlDecimal
ɓ
HtmlHexadecimal
ɓ
Url
%C9%93

Code

MD5
cca54e6f1da6a26ba574c583fe22d55e
Sha1
4752c62cba35a9b83f46ffe9b7455711a16f5639
Base64
yZM=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0253';
console.log(char);  // Output: ɓ

Java:

char c = '\u0253';
System.out.println(c);  // Output: ɓ

JSON:

{"text": "\u0253"}  // Value: ɓ

Python:

char = '\u0253'
print(char)  # Output: ɓ

Perl:

my $char = "\x{0253}";
print $char;  # Output: ɓ

PHP:

$char = "\x{0253}";
echo $char;  // Output: ɓ

Ruby:

char = "\u{0253}"
puts char  # Output: ɓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000253";  /* Display: ɓ */
}

HTML Decimal:

<p>HTML decimal: &#595;</p>  <!-- Display: ɓ -->

HTML Hexadecimal:

<p>HTML hex: &#x0253;</p>  <!-- Display: ɓ -->

URL Encoding:

// ɓ URL encoding
https://unicodefinder.com/search.php?query=%C9%93

Encodings

MD5:

cca54e6f1da6a26ba574c583fe22d55e

SHA1:

4752c62cba35a9b83f46ffe9b7455711a16f5639

Base64:

yZM=