C:
char c = '\u1561';
printf("%c\n", c); // Output: ᕡ
JavaScript:
const char = '\u1561';
console.log(char); // Output: ᕡ
Java:
char c = '\u1561';
System.out.println(c); // Output: ᕡ
JSON:
{"text": "\u1561"} // Value: ᕡ
Python:
char = '\u1561'
print(char) # Output: ᕡ
Perl:
my $char = "\x{1561}";
print $char; # Output: ᕡ
PHP:
$char = "\x{1561}";
echo $char; // Output: ᕡ
Ruby:
char = "\u{1561}"
puts char # Output: ᕡ
Rust:
let c = '\u{1561}';
println!("{}", c); // Output: ᕡ
Go:
char := '\u1561'
fmt.Printf("%c\n", char) // Output: ᕡ
CSS:
/* CSS content property */
.element::before {
content: "\001561"; /* 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=%E1%95%A1
MD5:
6225dd934dd6a8811161923364a16f3e
SHA1:
aac0c95ec04c3a193ecbe897c3927379a7711eed
Base64:
4ZWh