C:
char c = '\u063D';
printf("%c\n", c); // Output: ؽ
JavaScript:
const char = '\u063D';
console.log(char); // Output: ؽ
Java:
char c = '\u063D';
System.out.println(c); // Output: ؽ
JSON:
{"text": "\u063D"} // Value: ؽ
Python:
char = '\u063D'
print(char) # Output: ؽ
Perl:
my $char = "\x{063D}";
print $char; # Output: ؽ
PHP:
$char = "\x{063D}";
echo $char; // Output: ؽ
Ruby:
char = "\u{063D}"
puts char # Output: ؽ
Rust:
let c = '\u{63D}';
println!("{}", c); // Output: ؽ
Go:
char := '\u063D'
fmt.Printf("%c\n", char) // Output: ؽ
CSS:
/* CSS content property */
.element::before {
content: "\00063D"; /* 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=%D8%BD
MD5:
1ea8188099baeb43d5d459d059a08678
SHA1:
7e117ef32b9b845c5aa88cb0068813689b45e0b3
Base64:
2L0=