C:
char c = '\u15CF';
printf("%c\n", c); // Output: ᗏ
JavaScript:
const char = '\u15CF';
console.log(char); // Output: ᗏ
Java:
char c = '\u15CF';
System.out.println(c); // Output: ᗏ
JSON:
{"text": "\u15CF"} // Value: ᗏ
Python:
char = '\u15CF'
print(char) # Output: ᗏ
Perl:
my $char = "\x{15CF}";
print $char; # Output: ᗏ
PHP:
$char = "\x{15CF}";
echo $char; // Output: ᗏ
Ruby:
char = "\u{15CF}"
puts char # Output: ᗏ
Rust:
let c = '\u{15CF}';
println!("{}", c); // Output: ᗏ
Go:
char := '\u15CF'
fmt.Printf("%c\n", char) // Output: ᗏ
CSS:
/* CSS content property */
.element::before {
content: "\0015CF"; /* 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%97%8F
MD5:
98a0df05bad35d8c13204e6453c5a0f3
SHA1:
6518623cc63c3820d9508e16f632122c80534842
Base64:
4ZeP