Unicode Finder

"̶" U+0336(COMBINING LONG STROKE OVERLAY)

̶
U+0336
Blokknavn
Combining Diacritical Marks
Navn
COMBINING LONG STROKE OVERLAY

Programming

C
\u0336
JavaScript
\u0336
Java
\u0336
Json
\u0336
Python
\u0336
Perl
\x{0336}
PHP
\x{0336}
Ruby
\u{0336}
Rust
\u{336}
Go
\u0336

Web

CSS
\000336
HtmlDecimal
̶
HtmlHexadecimal
̶
Url
%CC%B6

Code

MD5
4a812ae51dad5fa6a59d053577a7aa8a
Sha1
d8699d8937a97955c38d55aa3f93ea8454c90ae3
Base64
zLY=

Brukseksempler

Programming Languages

C:

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

JavaScript:

const char = '\u0336';
console.log(char);  // Output: ̶

Java:

char c = '\u0336';
System.out.println(c);  // Output: ̶

JSON:

{"text": "\u0336"}  // Value: ̶

Python:

char = '\u0336'
print(char)  # Output: ̶

Perl:

my $char = "\x{0336}";
print $char;  # Output: ̶

PHP:

$char = "\x{0336}";
echo $char;  // Output: ̶

Ruby:

char = "\u{0336}"
puts char  # Output: ̶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000336";  /* Display: ̶ */
}

HTML Decimal:

<p>HTML decimal: &#822;</p>  <!-- Display: ̶ -->

HTML Hexadecimal:

<p>HTML hex: &#x0336;</p>  <!-- Display: ̶ -->

URL Encoding:

// ̶ URL encoding
https://unicodefinder.com/search.php?query=%CC%B6

Encodings

MD5:

4a812ae51dad5fa6a59d053577a7aa8a

SHA1:

d8699d8937a97955c38d55aa3f93ea8454c90ae3

Base64:

zLY=