Unicode Finder

"ˏ" U+02CF(MODIFIER LETTER LOW ACUTE ACCENT)

ˏ
U+02CF
Nazwa Bloku
Spacing Modifier Letters
Nazwa
MODIFIER LETTER LOW ACUTE ACCENT

Programming

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

Web

CSS
\0002CF
HtmlDecimal
ˏ
HtmlHexadecimal
ˏ
Url
%CB%8F

Code

MD5
4993661c5684f6aec5571a757cdb1667
Sha1
30c467c2718dfe9931b5c129914abd4494ed7044
Base64
y48=

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u02CF';
console.log(char);  // Output: ˏ

Java:

char c = '\u02CF';
System.out.println(c);  // Output: ˏ

JSON:

{"text": "\u02CF"}  // Value: ˏ

Python:

char = '\u02CF'
print(char)  # Output: ˏ

Perl:

my $char = "\x{02CF}";
print $char;  # Output: ˏ

PHP:

$char = "\x{02CF}";
echo $char;  // Output: ˏ

Ruby:

char = "\u{02CF}"
puts char  # Output: ˏ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#719;</p>  <!-- Display: ˏ -->

HTML Hexadecimal:

<p>HTML hex: &#x02CF;</p>  <!-- Display: ˏ -->

URL Encoding:

// ˏ URL encoding
https://unicodefinder.com/search.php?query=%CB%8F

Encodings

MD5:

4993661c5684f6aec5571a757cdb1667

SHA1:

30c467c2718dfe9931b5c129914abd4494ed7044

Base64:

y48=