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