Unicode Finder

"̰" U+0330(COMBINING TILDE BELOW)

̰
U+0330
Название Блока
Combining Diacritical Marks
Название
COMBINING TILDE BELOW

Programming

C
\u0330
JavaScript
\u0330
Java
\u0330
Json
\u0330
Python
\u0330
Perl
\x{0330}
PHP
\x{0330}
Ruby
\u{0330}
Rust
\u{330}
Go
\u0330

Web

CSS
\000330
HtmlDecimal
̰
HtmlHexadecimal
̰
Url
%CC%B0

Code

MD5
b178b0adb1c12a13490bf7d68011fc2b
Sha1
8916ee3588e4f188f0711c8e357b9f51c23f25de
Base64
zLA=

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u0330';
console.log(char);  // Output: ̰

Java:

char c = '\u0330';
System.out.println(c);  // Output: ̰

JSON:

{"text": "\u0330"}  // Value: ̰

Python:

char = '\u0330'
print(char)  # Output: ̰

Perl:

my $char = "\x{0330}";
print $char;  # Output: ̰

PHP:

$char = "\x{0330}";
echo $char;  // Output: ̰

Ruby:

char = "\u{0330}"
puts char  # Output: ̰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000330";  /* Display: ̰ */
}

HTML Decimal:

<p>HTML decimal: &#816;</p>  <!-- Display: ̰ -->

HTML Hexadecimal:

<p>HTML hex: &#x0330;</p>  <!-- Display: ̰ -->

URL Encoding:

// ̰ URL encoding
https://unicodefinder.com/search.php?query=%CC%B0

Encodings

MD5:

b178b0adb1c12a13490bf7d68011fc2b

SHA1:

8916ee3588e4f188f0711c8e357b9f51c23f25de

Base64:

zLA=