Unicode Finder

"ʙ" U+0299(LATIN LETTER SMALL CAPITAL B)

ʙ
U+0299
ชื่อบล็อก
IPA Extensions
ชื่อ
LATIN LETTER SMALL CAPITAL B

Programming

C
\u0299
JavaScript
\u0299
Java
\u0299
Json
\u0299
Python
\u0299
Perl
\x{0299}
PHP
\x{0299}
Ruby
\u{0299}
Rust
\u{299}
Go
\u0299

Web

CSS
\000299
HtmlDecimal
ʙ
HtmlHexadecimal
ʙ
Url
%CA%99

Code

MD5
91d5b64a4ebbe57706c417e4c722416c
Sha1
226fb37e1fe657f299070daf6b229224f35d7c83
Base64
ypk=

ตัวอย่างการใช้งาน

Programming Languages

C:

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

JavaScript:

const char = '\u0299';
console.log(char);  // Output: ʙ

Java:

char c = '\u0299';
System.out.println(c);  // Output: ʙ

JSON:

{"text": "\u0299"}  // Value: ʙ

Python:

char = '\u0299'
print(char)  # Output: ʙ

Perl:

my $char = "\x{0299}";
print $char;  # Output: ʙ

PHP:

$char = "\x{0299}";
echo $char;  // Output: ʙ

Ruby:

char = "\u{0299}"
puts char  # Output: ʙ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000299";  /* Display: ʙ */
}

HTML Decimal:

<p>HTML decimal: &#665;</p>  <!-- Display: ʙ -->

HTML Hexadecimal:

<p>HTML hex: &#x0299;</p>  <!-- Display: ʙ -->

URL Encoding:

// ʙ URL encoding
https://unicodefinder.com/search.php?query=%CA%99

Encodings

MD5:

91d5b64a4ebbe57706c417e4c722416c

SHA1:

226fb37e1fe657f299070daf6b229224f35d7c83

Base64:

ypk=