C:
char c = '\u1173';
printf("%c\n", c); // Output: ᅳ
JavaScript:
const char = '\u1173';
console.log(char); // Output: ᅳ
Java:
char c = '\u1173';
System.out.println(c); // Output: ᅳ
JSON:
{"text": "\u1173"} // Value: ᅳ
Python:
char = '\u1173'
print(char) # Output: ᅳ
Perl:
my $char = "\x{1173}";
print $char; # Output: ᅳ
PHP:
$char = "\x{1173}";
echo $char; // Output: ᅳ
Ruby:
char = "\u{1173}"
puts char # Output: ᅳ
Rust:
let c = '\u{1173}';
println!("{}", c); // Output: ᅳ
Go:
char := '\u1173'
fmt.Printf("%c\n", char) // Output: ᅳ
CSS:
/* CSS content property */
.element::before {
content: "\001173"; /* 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%85%B3
MD5:
78a15d39fb1f1f0e800df5c3d7a8a861
SHA1:
0aebad2ba1c199557d3428c231d661a1dae3948b
Base64:
4YWz