C:
char c = '\u0670';
printf("%c\n", c); // Output: ٰ
JavaScript:
const char = '\u0670';
console.log(char); // Output: ٰ
Java:
char c = '\u0670';
System.out.println(c); // Output: ٰ
JSON:
{"text": "\u0670"} // Value: ٰ
Python:
char = '\u0670'
print(char) # Output: ٰ
Perl:
my $char = "\x{0670}";
print $char; # Output: ٰ
PHP:
$char = "\x{0670}";
echo $char; // Output: ٰ
Ruby:
char = "\u{0670}"
puts char # Output: ٰ
Rust:
let c = '\u{670}';
println!("{}", c); // Output: ٰ
Go:
char := '\u0670'
fmt.Printf("%c\n", char) // Output: ٰ
CSS:
/* CSS content property */
.element::before {
content: "\000670"; /* 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%B0
MD5:
35c69b9e1167260783da9c5aeb731fd2
SHA1:
d04fa072e7f0beea7f07b83c9123800cad42e219
Base64:
2bA=