C:
char c = '\u0730';
printf("%c\n", c); // Output: ܰ
JavaScript:
const char = '\u0730';
console.log(char); // Output: ܰ
Java:
char c = '\u0730';
System.out.println(c); // Output: ܰ
JSON:
{"text": "\u0730"} // Value: ܰ
Python:
char = '\u0730'
print(char) # Output: ܰ
Perl:
my $char = "\x{0730}";
print $char; # Output: ܰ
PHP:
$char = "\x{0730}";
echo $char; // Output: ܰ
Ruby:
char = "\u{0730}"
puts char # Output: ܰ
Rust:
let c = '\u{730}';
println!("{}", c); // Output: ܰ
Go:
char := '\u0730'
fmt.Printf("%c\n", char) // Output: ܰ
CSS:
/* CSS content property */
.element::before {
content: "\000730"; /* 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=%DC%B0
MD5:
fe0c98842214db6bbf439e57cbdd5dcb
SHA1:
6d5a2554166fc817f94b78cf916aa662d38c9642
Base64:
3LA=