C:
char c = '\u0755';
printf("%c\n", c); // Output: ݕ
JavaScript:
const char = '\u0755';
console.log(char); // Output: ݕ
Java:
char c = '\u0755';
System.out.println(c); // Output: ݕ
JSON:
{"text": "\u0755"} // Value: ݕ
Python:
char = '\u0755'
print(char) # Output: ݕ
Perl:
my $char = "\x{0755}";
print $char; # Output: ݕ
PHP:
$char = "\x{0755}";
echo $char; // Output: ݕ
Ruby:
char = "\u{0755}"
puts char # Output: ݕ
Rust:
let c = '\u{755}';
println!("{}", c); // Output: ݕ
Go:
char := '\u0755'
fmt.Printf("%c\n", char) // Output: ݕ
CSS:
/* CSS content property */
.element::before {
content: "\000755"; /* 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=%DD%95
MD5:
eaa4aeadcf4ee5bb47bbb2401310f2a6
SHA1:
3670c69c466d48deb7048f656ccae13fd4b868e0
Base64:
3ZU=