C:
char c = '\u0671';
printf("%c\n", c); // Output: ٱ
JavaScript:
const char = '\u0671';
console.log(char); // Output: ٱ
Java:
char c = '\u0671';
System.out.println(c); // Output: ٱ
JSON:
{"text": "\u0671"} // Value: ٱ
Python:
char = '\u0671'
print(char) # Output: ٱ
Perl:
my $char = "\x{0671}";
print $char; # Output: ٱ
PHP:
$char = "\x{0671}";
echo $char; // Output: ٱ
Ruby:
char = "\u{0671}"
puts char # Output: ٱ
Rust:
let c = '\u{671}';
println!("{}", c); // Output: ٱ
Go:
char := '\u0671'
fmt.Printf("%c\n", char) // Output: ٱ
CSS:
/* CSS content property */
.element::before {
content: "\000671"; /* 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%B1
MD5:
4980f686c371ae44198a553115e71eab
SHA1:
0b122b3a295f97fadc244432d40bc5900cb2ff1b
Base64:
2bE=