C:
char c = '\u066D';
printf("%c\n", c); // Output: ٭
JavaScript:
const char = '\u066D';
console.log(char); // Output: ٭
Java:
char c = '\u066D';
System.out.println(c); // Output: ٭
JSON:
{"text": "\u066D"} // Value: ٭
Python:
char = '\u066D'
print(char) # Output: ٭
Perl:
my $char = "\x{066D}";
print $char; # Output: ٭
PHP:
$char = "\x{066D}";
echo $char; // Output: ٭
Ruby:
char = "\u{066D}"
puts char # Output: ٭
Rust:
let c = '\u{66D}';
println!("{}", c); // Output: ٭
Go:
char := '\u066D'
fmt.Printf("%c\n", char) // Output: ٭
CSS:
/* CSS content property */
.element::before {
content: "\00066D"; /* 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%AD
MD5:
19ccfb6ca17aa1c3366c05bcea69f0b0
SHA1:
2013bcd823c635f687c807ac4db9e6ece86f1a1b
Base64:
2a0=