C:
char c = '\u1702';
printf("%c\n", c); // Output: ᜂ
JavaScript:
const char = '\u1702';
console.log(char); // Output: ᜂ
Java:
char c = '\u1702';
System.out.println(c); // Output: ᜂ
JSON:
{"text": "\u1702"} // Value: ᜂ
Python:
char = '\u1702'
print(char) # Output: ᜂ
Perl:
my $char = "\x{1702}";
print $char; # Output: ᜂ
PHP:
$char = "\x{1702}";
echo $char; // Output: ᜂ
Ruby:
char = "\u{1702}"
puts char # Output: ᜂ
Rust:
let c = '\u{1702}';
println!("{}", c); // Output: ᜂ
Go:
char := '\u1702'
fmt.Printf("%c\n", char) // Output: ᜂ
CSS:
/* CSS content property */
.element::before {
content: "\001702"; /* 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%9C%82
MD5:
2d818fdbcd55f2c44d95abb9fbe2b3b2
SHA1:
9e4c24737b507dd1b197e14663c706e42f13e818
Base64:
4ZyC