Unicode Finder

"︡" U+FE21(COMBINING LIGATURE RIGHT HALF)

U+FE21
שם בלוק
Combining Half Marks
שם
COMBINING LIGATURE RIGHT HALF

Programming

C
\uFE21
JavaScript
\uFE21
Java
\uFE21
Json
\uFE21
Python
\uFE21
Perl
\x{FE21}
PHP
\x{FE21}
Ruby
\u{FE21}
Rust
\u{FE21}
Go
\uFE21

Web

CSS
\00FE21
HtmlDecimal
︡
HtmlHexadecimal
︡
Url
%EF%B8%A1

Code

MD5
1972c01753f69a8779bb0e2921529697
Sha1
4b86ddc95fd2e011ae74c8137ef0863d8c5fae05
Base64
77ih

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\uFE21';
console.log(char);  // Output: ︡

Java:

char c = '\uFE21';
System.out.println(c);  // Output: ︡

JSON:

{"text": "\uFE21"}  // Value: ︡

Python:

char = '\uFE21'
print(char)  # Output: ︡

Perl:

my $char = "\x{FE21}";
print $char;  # Output: ︡

PHP:

$char = "\x{FE21}";
echo $char;  // Output: ︡

Ruby:

char = "\u{FE21}"
puts char  # Output: ︡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00FE21";  /* Display: ︡ */
}

HTML Decimal:

<p>HTML decimal: &#65057;</p>  <!-- Display: ︡ -->

HTML Hexadecimal:

<p>HTML hex: &#xFE21;</p>  <!-- Display: ︡ -->

URL Encoding:

// ︡ URL encoding
https://unicodefinder.com/search.php?query=%EF%B8%A1

Encodings

MD5:

1972c01753f69a8779bb0e2921529697

SHA1:

4b86ddc95fd2e011ae74c8137ef0863d8c5fae05

Base64:

77ih