C:
char c = '\u1131';
printf("%c\n", c); // Output: ᄱ
JavaScript:
const char = '\u1131';
console.log(char); // Output: ᄱ
Java:
char c = '\u1131';
System.out.println(c); // Output: ᄱ
JSON:
{"text": "\u1131"} // Value: ᄱ
Python:
char = '\u1131'
print(char) # Output: ᄱ
Perl:
my $char = "\x{1131}";
print $char; # Output: ᄱ
PHP:
$char = "\x{1131}";
echo $char; // Output: ᄱ
Ruby:
char = "\u{1131}"
puts char # Output: ᄱ
Rust:
let c = '\u{1131}';
println!("{}", c); // Output: ᄱ
Go:
char := '\u1131'
fmt.Printf("%c\n", char) // Output: ᄱ
CSS:
/* CSS content property */
.element::before {
content: "\001131"; /* 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%84%B1
MD5:
394524acfe53136459b6af7b324d138c
SHA1:
6a899cbf26ee1773fbf2e5ccb79a2ae292be49ab
Base64:
4YSx