C:
char c = '\u1432';
printf("%c\n", c); // Output: ᐲ
JavaScript:
const char = '\u1432';
console.log(char); // Output: ᐲ
Java:
char c = '\u1432';
System.out.println(c); // Output: ᐲ
JSON:
{"text": "\u1432"} // Value: ᐲ
Python:
char = '\u1432'
print(char) # Output: ᐲ
Perl:
my $char = "\x{1432}";
print $char; # Output: ᐲ
PHP:
$char = "\x{1432}";
echo $char; // Output: ᐲ
Ruby:
char = "\u{1432}"
puts char # Output: ᐲ
Rust:
let c = '\u{1432}';
println!("{}", c); // Output: ᐲ
Go:
char := '\u1432'
fmt.Printf("%c\n", char) // Output: ᐲ
CSS:
/* CSS content property */
.element::before {
content: "\001432"; /* 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%B2
MD5:
91a9bdbb7ebecde918190605dc8b0bac
SHA1:
a64cc15804025e465b5f630263ab57ffe6669c3f
Base64:
4ZCy