C:
char c = '\u0628';
printf("%c\n", c); // Output: ب
JavaScript:
const char = '\u0628';
console.log(char); // Output: ب
Java:
char c = '\u0628';
System.out.println(c); // Output: ب
JSON:
{"text": "\u0628"} // Value: ب
Python:
char = '\u0628'
print(char) # Output: ب
Perl:
my $char = "\x{0628}";
print $char; # Output: ب
PHP:
$char = "\x{0628}";
echo $char; // Output: ب
Ruby:
char = "\u{0628}"
puts char # Output: ب
Rust:
let c = '\u{628}';
println!("{}", c); // Output: ب
Go:
char := '\u0628'
fmt.Printf("%c\n", char) // Output: ب
CSS:
/* CSS content property */
.element::before {
content: "\000628"; /* 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%A8
MD5:
9497c4fb634129a18a64948cc9e80360
SHA1:
8b5123a22cbcf54a204e29af63cbbcd1c155c89a
Base64:
2Kg=