C:
char c = '\u063A';
printf("%c\n", c); // Output: غ
JavaScript:
const char = '\u063A';
console.log(char); // Output: غ
Java:
char c = '\u063A';
System.out.println(c); // Output: غ
JSON:
{"text": "\u063A"} // Value: غ
Python:
char = '\u063A'
print(char) # Output: غ
Perl:
my $char = "\x{063A}";
print $char; # Output: غ
PHP:
$char = "\x{063A}";
echo $char; // Output: غ
Ruby:
char = "\u{063A}"
puts char # Output: غ
Rust:
let c = '\u{63A}';
println!("{}", c); // Output: غ
Go:
char := '\u063A'
fmt.Printf("%c\n", char) // Output: غ
CSS:
/* CSS content property */
.element::before {
content: "\00063A"; /* 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%BA
MD5:
749a1ff8d06b05b754bd341aead2fc5f
SHA1:
0e636841e7121af43fe840a6774fea6cd6c5b170
Base64:
2Lo=