C:
char c = '\u0770';
printf("%c\n", c); // Output: ݰ
JavaScript:
const char = '\u0770';
console.log(char); // Output: ݰ
Java:
char c = '\u0770';
System.out.println(c); // Output: ݰ
JSON:
{"text": "\u0770"} // Value: ݰ
Python:
char = '\u0770'
print(char) # Output: ݰ
Perl:
my $char = "\x{0770}";
print $char; # Output: ݰ
PHP:
$char = "\x{0770}";
echo $char; // Output: ݰ
Ruby:
char = "\u{0770}"
puts char # Output: ݰ
Rust:
let c = '\u{770}';
println!("{}", c); // Output: ݰ
Go:
char := '\u0770'
fmt.Printf("%c\n", char) // Output: ݰ
CSS:
/* CSS content property */
.element::before {
content: "\000770"; /* 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%B0
MD5:
4ac516726e422f4a64969d161f9efd43
SHA1:
6c1041fbbae107ac2949769464159f09a1a7a872
Base64:
3bA=