C:
char c = '\u14BE';
printf("%c\n", c); // Output: ᒾ
JavaScript:
const char = '\u14BE';
console.log(char); // Output: ᒾ
Java:
char c = '\u14BE';
System.out.println(c); // Output: ᒾ
JSON:
{"text": "\u14BE"} // Value: ᒾ
Python:
char = '\u14BE'
print(char) # Output: ᒾ
Perl:
my $char = "\x{14BE}";
print $char; # Output: ᒾ
PHP:
$char = "\x{14BE}";
echo $char; // Output: ᒾ
Ruby:
char = "\u{14BE}"
puts char # Output: ᒾ
Rust:
let c = '\u{14BE}';
println!("{}", c); // Output: ᒾ
Go:
char := '\u14BE'
fmt.Printf("%c\n", char) // Output: ᒾ
CSS:
/* CSS content property */
.element::before {
content: "\0014BE"; /* 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%BE
MD5:
8960f45b7b8b3fe9a3d57e14eada27d4
SHA1:
70e8c3522c8f41921da1f86bcc42647d07343402
Base64:
4ZK+