C:
char c = '\u154E';
printf("%c\n", c); // Output: ᕎ
JavaScript:
const char = '\u154E';
console.log(char); // Output: ᕎ
Java:
char c = '\u154E';
System.out.println(c); // Output: ᕎ
JSON:
{"text": "\u154E"} // Value: ᕎ
Python:
char = '\u154E'
print(char) # Output: ᕎ
Perl:
my $char = "\x{154E}";
print $char; # Output: ᕎ
PHP:
$char = "\x{154E}";
echo $char; // Output: ᕎ
Ruby:
char = "\u{154E}"
puts char # Output: ᕎ
Rust:
let c = '\u{154E}';
println!("{}", c); // Output: ᕎ
Go:
char := '\u154E'
fmt.Printf("%c\n", char) // Output: ᕎ
CSS:
/* CSS content property */
.element::before {
content: "\00154E"; /* 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%95%8E
MD5:
f833b375e57f4ce7f6dddba768170f3e
SHA1:
cc0aa8230143dec5b109b9d4e7128df033c96631
Base64:
4ZWO