C:
char c = '\u15C1';
printf("%c\n", c); // Output: ᗁ
JavaScript:
const char = '\u15C1';
console.log(char); // Output: ᗁ
Java:
char c = '\u15C1';
System.out.println(c); // Output: ᗁ
JSON:
{"text": "\u15C1"} // Value: ᗁ
Python:
char = '\u15C1'
print(char) # Output: ᗁ
Perl:
my $char = "\x{15C1}";
print $char; # Output: ᗁ
PHP:
$char = "\x{15C1}";
echo $char; // Output: ᗁ
Ruby:
char = "\u{15C1}"
puts char # Output: ᗁ
Rust:
let c = '\u{15C1}';
println!("{}", c); // Output: ᗁ
Go:
char := '\u15C1'
fmt.Printf("%c\n", char) // Output: ᗁ
CSS:
/* CSS content property */
.element::before {
content: "\0015C1"; /* 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%97%81
MD5:
703754e1b041738394316af90ed5ce59
SHA1:
f04b901caaa6e86ffe5f69d25f6581d24a89b4f7
Base64:
4ZeB