C:
char c = '\u1167';
printf("%c\n", c); // Output: ᅧ
JavaScript:
const char = '\u1167';
console.log(char); // Output: ᅧ
Java:
char c = '\u1167';
System.out.println(c); // Output: ᅧ
JSON:
{"text": "\u1167"} // Value: ᅧ
Python:
char = '\u1167'
print(char) # Output: ᅧ
Perl:
my $char = "\x{1167}";
print $char; # Output: ᅧ
PHP:
$char = "\x{1167}";
echo $char; // Output: ᅧ
Ruby:
char = "\u{1167}"
puts char # Output: ᅧ
Rust:
let c = '\u{1167}';
println!("{}", c); // Output: ᅧ
Go:
char := '\u1167'
fmt.Printf("%c\n", char) // Output: ᅧ
CSS:
/* CSS content property */
.element::before {
content: "\001167"; /* 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%A7
MD5:
9beaedf2011125b0196bb0563a046647
SHA1:
5b808649fa9530e8e3139fafe2131199e763376c
Base64:
4YWn