C:
char c = '\u0672';
printf("%c\n", c); // Output: ٲ
JavaScript:
const char = '\u0672';
console.log(char); // Output: ٲ
Java:
char c = '\u0672';
System.out.println(c); // Output: ٲ
JSON:
{"text": "\u0672"} // Value: ٲ
Python:
char = '\u0672'
print(char) # Output: ٲ
Perl:
my $char = "\x{0672}";
print $char; # Output: ٲ
PHP:
$char = "\x{0672}";
echo $char; // Output: ٲ
Ruby:
char = "\u{0672}"
puts char # Output: ٲ
Rust:
let c = '\u{672}';
println!("{}", c); // Output: ٲ
Go:
char := '\u0672'
fmt.Printf("%c\n", char) // Output: ٲ
CSS:
/* CSS content property */
.element::before {
content: "\000672"; /* 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%B2
MD5:
ff67932e78be9f6f558cc4802e7606d4
SHA1:
feb6ffd486e8d087ca233ee7f367d0ce781c4c0a
Base64:
2bI=