C:
char c = '\u1483';
printf("%c\n", c); // Output: ᒃ
JavaScript:
const char = '\u1483';
console.log(char); // Output: ᒃ
Java:
char c = '\u1483';
System.out.println(c); // Output: ᒃ
JSON:
{"text": "\u1483"} // Value: ᒃ
Python:
char = '\u1483'
print(char) # Output: ᒃ
Perl:
my $char = "\x{1483}";
print $char; # Output: ᒃ
PHP:
$char = "\x{1483}";
echo $char; // Output: ᒃ
Ruby:
char = "\u{1483}"
puts char # Output: ᒃ
Rust:
let c = '\u{1483}';
println!("{}", c); // Output: ᒃ
Go:
char := '\u1483'
fmt.Printf("%c\n", char) // Output: ᒃ
CSS:
/* CSS content property */
.element::before {
content: "\001483"; /* 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%92%83
MD5:
d05f2b60d419c42a7e38c8aea29d0943
SHA1:
64b8666b481dc8fcd74c9f9703901583ab63fd0b
Base64:
4ZKD