C:
char c = '\u0673';
printf("%c\n", c); // Output: ٳ
JavaScript:
const char = '\u0673';
console.log(char); // Output: ٳ
Java:
char c = '\u0673';
System.out.println(c); // Output: ٳ
JSON:
{"text": "\u0673"} // Value: ٳ
Python:
char = '\u0673'
print(char) # Output: ٳ
Perl:
my $char = "\x{0673}";
print $char; # Output: ٳ
PHP:
$char = "\x{0673}";
echo $char; // Output: ٳ
Ruby:
char = "\u{0673}"
puts char # Output: ٳ
Rust:
let c = '\u{673}';
println!("{}", c); // Output: ٳ
Go:
char := '\u0673'
fmt.Printf("%c\n", char) // Output: ٳ
CSS:
/* CSS content property */
.element::before {
content: "\000673"; /* 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%B3
MD5:
e49414eb4820dfbf325089ebc16a286c
SHA1:
e6d8aed31e93b7a7c96efc4033fdb92e10d2f5f5
Base64:
2bM=