Unicode Finder

"̲" U+0332(COMBINING LOW LINE)

̲
U+0332
Nombre del Bloque
Combining Diacritical Marks
Nombre
COMBINING LOW LINE

Programming

C
\u0332
JavaScript
\u0332
Java
\u0332
Json
\u0332
Python
\u0332
Perl
\x{0332}
PHP
\x{0332}
Ruby
\u{0332}
Rust
\u{332}
Go
\u0332

Web

CSS
\000332
HtmlDecimal
̲
HtmlHexadecimal
̲
Url
%CC%B2

Code

MD5
faf0efd7ef610ec01484fb023eafe3cd
Sha1
5f8751be82f1969230549d550972a09fffd1949c
Base64
zLI=

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u0332';
console.log(char);  // Output: ̲

Java:

char c = '\u0332';
System.out.println(c);  // Output: ̲

JSON:

{"text": "\u0332"}  // Value: ̲

Python:

char = '\u0332'
print(char)  # Output: ̲

Perl:

my $char = "\x{0332}";
print $char;  # Output: ̲

PHP:

$char = "\x{0332}";
echo $char;  // Output: ̲

Ruby:

char = "\u{0332}"
puts char  # Output: ̲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000332";  /* Display: ̲ */
}

HTML Decimal:

<p>HTML decimal: &#818;</p>  <!-- Display: ̲ -->

HTML Hexadecimal:

<p>HTML hex: &#x0332;</p>  <!-- Display: ̲ -->

URL Encoding:

// ̲ URL encoding
https://unicodefinder.com/search.php?query=%CC%B2

Encodings

MD5:

faf0efd7ef610ec01484fb023eafe3cd

SHA1:

5f8751be82f1969230549d550972a09fffd1949c

Base64:

zLI=