Unicode Finder

"ˬ" U+02EC(MODIFIER LETTER VOICING)

ˬ
U+02EC
Nazwa Bloku
Spacing Modifier Letters
Nazwa
MODIFIER LETTER VOICING

Programming

C
\u02EC
JavaScript
\u02EC
Java
\u02EC
Json
\u02EC
Python
\u02EC
Perl
\x{02EC}
PHP
\x{02EC}
Ruby
\u{02EC}
Rust
\u{2EC}
Go
\u02EC

Web

CSS
\0002EC
HtmlDecimal
ˬ
HtmlHexadecimal
ˬ
Url
%CB%AC

Code

MD5
38b5a85d0b9030193d8fadea39ecf526
Sha1
ed3df9a7de3e5a54066cd85bdca94613a5fa9a5e
Base64
y6w=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u02EC';
console.log(char);  // Output: ˬ

Java:

char c = '\u02EC';
System.out.println(c);  // Output: ˬ

JSON:

{"text": "\u02EC"}  // Value: ˬ

Python:

char = '\u02EC'
print(char)  # Output: ˬ

Perl:

my $char = "\x{02EC}";
print $char;  # Output: ˬ

PHP:

$char = "\x{02EC}";
echo $char;  // Output: ˬ

Ruby:

char = "\u{02EC}"
puts char  # Output: ˬ

Rust:

let c = '\u{2EC}';
println!("{}", c);  // Output: ˬ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0002EC";  /* Display: ˬ */
}

HTML Decimal:

<p>HTML decimal: &#748;</p>  <!-- Display: ˬ -->

HTML Hexadecimal:

<p>HTML hex: &#x02EC;</p>  <!-- Display: ˬ -->

URL Encoding:

// ˬ URL encoding
https://unicodefinder.com/search.php?query=%CB%AC

Encodings

MD5:

38b5a85d0b9030193d8fadea39ecf526

SHA1:

ed3df9a7de3e5a54066cd85bdca94613a5fa9a5e

Base64:

y6w=