C:
char c = '\u14F1';
printf("%c\n", c); // Output: ᓱ
JavaScript:
const char = '\u14F1';
console.log(char); // Output: ᓱ
Java:
char c = '\u14F1';
System.out.println(c); // Output: ᓱ
JSON:
{"text": "\u14F1"} // Value: ᓱ
Python:
char = '\u14F1'
print(char) # Output: ᓱ
Perl:
my $char = "\x{14F1}";
print $char; # Output: ᓱ
PHP:
$char = "\x{14F1}";
echo $char; // Output: ᓱ
Ruby:
char = "\u{14F1}"
puts char # Output: ᓱ
Rust:
let c = '\u{14F1}';
println!("{}", c); // Output: ᓱ
Go:
char := '\u14F1'
fmt.Printf("%c\n", char) // Output: ᓱ
CSS:
/* CSS content property */
.element::before {
content: "\0014F1"; /* 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%93%B1
MD5:
0d6b0a99711c29d0fd0d8216f6253e61
SHA1:
0467eb1e5c6af62792c19815408ab7ccbed50cf6
Base64:
4ZOx