C:
char c = '\u174A';
printf("%c\n", c); // Output: ᝊ
JavaScript:
const char = '\u174A';
console.log(char); // Output: ᝊ
Java:
char c = '\u174A';
System.out.println(c); // Output: ᝊ
JSON:
{"text": "\u174A"} // Value: ᝊ
Python:
char = '\u174A'
print(char) # Output: ᝊ
Perl:
my $char = "\x{174A}";
print $char; # Output: ᝊ
PHP:
$char = "\x{174A}";
echo $char; // Output: ᝊ
Ruby:
char = "\u{174A}"
puts char # Output: ᝊ
Rust:
let c = '\u{174A}';
println!("{}", c); // Output: ᝊ
Go:
char := '\u174A'
fmt.Printf("%c\n", char) // Output: ᝊ
CSS:
/* CSS content property */
.element::before {
content: "\00174A"; /* 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%9D%8A
MD5:
a5f52a91597f0c1edfc18697a7afbdfe
SHA1:
6181f6b2673e9ea73c77ee6fb20dd37fc140b41d
Base64:
4Z2K