C:
char c = '\u156F';
printf("%c\n", c); // Output: ᕯ
JavaScript:
const char = '\u156F';
console.log(char); // Output: ᕯ
Java:
char c = '\u156F';
System.out.println(c); // Output: ᕯ
JSON:
{"text": "\u156F"} // Value: ᕯ
Python:
char = '\u156F'
print(char) # Output: ᕯ
Perl:
my $char = "\x{156F}";
print $char; # Output: ᕯ
PHP:
$char = "\x{156F}";
echo $char; // Output: ᕯ
Ruby:
char = "\u{156F}"
puts char # Output: ᕯ
Rust:
let c = '\u{156F}';
println!("{}", c); // Output: ᕯ
Go:
char := '\u156F'
fmt.Printf("%c\n", char) // Output: ᕯ
CSS:
/* CSS content property */
.element::before {
content: "\00156F"; /* 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%AF
MD5:
69dedb27e9e6e4d6f4109034df5fa45e
SHA1:
d1e0d8f388d24a90054ef60756d102052ca6264c
Base64:
4ZWv