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