C:
char c = '\u0626';
printf("%c\n", c); // Output: ئ
JavaScript:
const char = '\u0626';
console.log(char); // Output: ئ
Java:
char c = '\u0626';
System.out.println(c); // Output: ئ
JSON:
{"text": "\u0626"} // Value: ئ
Python:
char = '\u0626'
print(char) # Output: ئ
Perl:
my $char = "\x{0626}";
print $char; # Output: ئ
PHP:
$char = "\x{0626}";
echo $char; // Output: ئ
Ruby:
char = "\u{0626}"
puts char # Output: ئ
Rust:
let c = '\u{626}';
println!("{}", c); // Output: ئ
Go:
char := '\u0626'
fmt.Printf("%c\n", char) // Output: ئ
CSS:
/* CSS content property */
.element::before {
content: "\000626"; /* 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%A6
MD5:
93012fefc305ee2dd4038594621467c4
SHA1:
46e5a9a911202a8b9740ad337dd732cf13bd0f47
Base64:
2KY=