C:
char c = '\u1433';
printf("%c\n", c); // Output: ᐳ
JavaScript:
const char = '\u1433';
console.log(char); // Output: ᐳ
Java:
char c = '\u1433';
System.out.println(c); // Output: ᐳ
JSON:
{"text": "\u1433"} // Value: ᐳ
Python:
char = '\u1433'
print(char) # Output: ᐳ
Perl:
my $char = "\x{1433}";
print $char; # Output: ᐳ
PHP:
$char = "\x{1433}";
echo $char; // Output: ᐳ
Ruby:
char = "\u{1433}"
puts char # Output: ᐳ
Rust:
let c = '\u{1433}';
println!("{}", c); // Output: ᐳ
Go:
char := '\u1433'
fmt.Printf("%c\n", char) // Output: ᐳ
CSS:
/* CSS content property */
.element::before {
content: "\001433"; /* 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%90%B3
MD5:
8a02fb92b3418357530724d505889b68
SHA1:
c503e1f6802e8e40af9d8bfaeef557655ed33b5c
Base64:
4ZCz