C:
char c = '\u1165';
printf("%c\n", c); // Output: ᅥ
JavaScript:
const char = '\u1165';
console.log(char); // Output: ᅥ
Java:
char c = '\u1165';
System.out.println(c); // Output: ᅥ
JSON:
{"text": "\u1165"} // Value: ᅥ
Python:
char = '\u1165'
print(char) # Output: ᅥ
Perl:
my $char = "\x{1165}";
print $char; # Output: ᅥ
PHP:
$char = "\x{1165}";
echo $char; // Output: ᅥ
Ruby:
char = "\u{1165}"
puts char # Output: ᅥ
Rust:
let c = '\u{1165}';
println!("{}", c); // Output: ᅥ
Go:
char := '\u1165'
fmt.Printf("%c\n", char) // Output: ᅥ
CSS:
/* CSS content property */
.element::before {
content: "\001165"; /* 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%A5
MD5:
47c94e679d6dcaa252cbb76bc21de3d1
SHA1:
12a5163e8ebb11081c73e73d8387a1a04f1a5a34
Base64:
4YWl