Unicode Finder

"͓" U+0353(COMBINING X BELOW)

͓
U+0353
Nama Blok
Combining Diacritical Marks
Nama
COMBINING X BELOW

Programming

C
\u0353
JavaScript
\u0353
Java
\u0353
Json
\u0353
Python
\u0353
Perl
\x{0353}
PHP
\x{0353}
Ruby
\u{0353}
Rust
\u{353}
Go
\u0353

Web

CSS
\000353
HtmlDecimal
͓
HtmlHexadecimal
͓
Url
%CD%93

Code

MD5
29c0f15fcd6dec0481aad3df146abe7f
Sha1
6c577d273aa55f4524045ee3b765a0dc2c3760ba
Base64
zZM=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0353';
console.log(char);  // Output: ͓

Java:

char c = '\u0353';
System.out.println(c);  // Output: ͓

JSON:

{"text": "\u0353"}  // Value: ͓

Python:

char = '\u0353'
print(char)  # Output: ͓

Perl:

my $char = "\x{0353}";
print $char;  # Output: ͓

PHP:

$char = "\x{0353}";
echo $char;  // Output: ͓

Ruby:

char = "\u{0353}"
puts char  # Output: ͓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000353";  /* Display: ͓ */
}

HTML Decimal:

<p>HTML decimal: &#851;</p>  <!-- Display: ͓ -->

HTML Hexadecimal:

<p>HTML hex: &#x0353;</p>  <!-- Display: ͓ -->

URL Encoding:

// ͓ URL encoding
https://unicodefinder.com/search.php?query=%CD%93

Encodings

MD5:

29c0f15fcd6dec0481aad3df146abe7f

SHA1:

6c577d273aa55f4524045ee3b765a0dc2c3760ba

Base64:

zZM=