C:
char c = '\u0643';
printf("%c\n", c); // Output: ك
JavaScript:
const char = '\u0643';
console.log(char); // Output: ك
Java:
char c = '\u0643';
System.out.println(c); // Output: ك
JSON:
{"text": "\u0643"} // Value: ك
Python:
char = '\u0643'
print(char) # Output: ك
Perl:
my $char = "\x{0643}";
print $char; # Output: ك
PHP:
$char = "\x{0643}";
echo $char; // Output: ك
Ruby:
char = "\u{0643}"
puts char # Output: ك
Rust:
let c = '\u{643}';
println!("{}", c); // Output: ك
Go:
char := '\u0643'
fmt.Printf("%c\n", char) // Output: ك
CSS:
/* CSS content property */
.element::before {
content: "\000643"; /* 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%83
MD5:
9cef32641b37e95b4094f12cecb1a44a
SHA1:
66dcc319bde32e80ba80b486552228ecb6c2e537
Base64:
2YM=