Unicode Finder

"᷄" U+1DC4(COMBINING MACRON-ACUTE)

U+1DC4
שם בלוק
Combining Diacritical Marks Supplement
שם
COMBINING MACRON-ACUTE

Programming

C
\u1DC4
JavaScript
\u1DC4
Java
\u1DC4
Json
\u1DC4
Python
\u1DC4
Perl
\x{1DC4}
PHP
\x{1DC4}
Ruby
\u{1DC4}
Rust
\u{1DC4}
Go
\u1DC4

Web

CSS
\001DC4
HtmlDecimal
᷄
HtmlHexadecimal
᷄
Url
%E1%B7%84

Code

MD5
6f326da6ad23663eea7e1e49dac8ed09
Sha1
c2c5541b23a752040230b684b8b3de8f61caf375
Base64
4beE

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

Programming Languages

C:

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

JavaScript:

const char = '\u1DC4';
console.log(char);  // Output: ᷄

Java:

char c = '\u1DC4';
System.out.println(c);  // Output: ᷄

JSON:

{"text": "\u1DC4"}  // Value: ᷄

Python:

char = '\u1DC4'
print(char)  # Output: ᷄

Perl:

my $char = "\x{1DC4}";
print $char;  # Output: ᷄

PHP:

$char = "\x{1DC4}";
echo $char;  // Output: ᷄

Ruby:

char = "\u{1DC4}"
puts char  # Output: ᷄

Rust:

let c = '\u{1DC4}';
println!("{}", c);  // Output: ᷄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001DC4";  /* Display: ᷄ */
}

HTML Decimal:

<p>HTML decimal: &#7620;</p>  <!-- Display: ᷄ -->

HTML Hexadecimal:

<p>HTML hex: &#x1DC4;</p>  <!-- Display: ᷄ -->

URL Encoding:

// ᷄ URL encoding
https://unicodefinder.com/search.php?query=%E1%B7%84

Encodings

MD5:

6f326da6ad23663eea7e1e49dac8ed09

SHA1:

c2c5541b23a752040230b684b8b3de8f61caf375

Base64:

4beE