C:
char c = '\u0651';
printf("%c\n", c); // Output: ّ
JavaScript:
const char = '\u0651';
console.log(char); // Output: ّ
Java:
char c = '\u0651';
System.out.println(c); // Output: ّ
JSON:
{"text": "\u0651"} // Value: ّ
Python:
char = '\u0651'
print(char) # Output: ّ
Perl:
my $char = "\x{0651}";
print $char; # Output: ّ
PHP:
$char = "\x{0651}";
echo $char; // Output: ّ
Ruby:
char = "\u{0651}"
puts char # Output: ّ
Rust:
let c = '\u{651}';
println!("{}", c); // Output: ّ
Go:
char := '\u0651'
fmt.Printf("%c\n", char) // Output: ّ
CSS:
/* CSS content property */
.element::before {
content: "\000651"; /* Display: ّ */
}
HTML Decimal:
<p>HTML decimal: ّ</p> <!-- Display: ّ -->
HTML Hexadecimal:
<p>HTML hex: ّ</p> <!-- Display: ّ -->
URL Encoding:
// ّ URL encoding
https://unicodefinder.com/search.php?query=%D9%91
MD5:
23540d41bf048c847d2d3cbcdb4aa38c
SHA1:
0e864b95b093ec745561716aa5f1b168063301d1
Base64:
2ZE=