C:
char c = '\u1146';
printf("%c\n", c); // Output: ᅆ
JavaScript:
const char = '\u1146';
console.log(char); // Output: ᅆ
Java:
char c = '\u1146';
System.out.println(c); // Output: ᅆ
JSON:
{"text": "\u1146"} // Value: ᅆ
Python:
char = '\u1146'
print(char) # Output: ᅆ
Perl:
my $char = "\x{1146}";
print $char; # Output: ᅆ
PHP:
$char = "\x{1146}";
echo $char; // Output: ᅆ
Ruby:
char = "\u{1146}"
puts char # Output: ᅆ
Rust:
let c = '\u{1146}';
println!("{}", c); // Output: ᅆ
Go:
char := '\u1146'
fmt.Printf("%c\n", char) // Output: ᅆ
CSS:
/* CSS content property */
.element::before {
content: "\001146"; /* 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%86
MD5:
887d99848dea89190ce61dcdbb34dde0
SHA1:
3290f3883aab47b0979d4a3142ac70b7576fd007
Base64:
4YWG