C:
char c = '\u1137';
printf("%c\n", c); // Output: ᄷ
JavaScript:
const char = '\u1137';
console.log(char); // Output: ᄷ
Java:
char c = '\u1137';
System.out.println(c); // Output: ᄷ
JSON:
{"text": "\u1137"} // Value: ᄷ
Python:
char = '\u1137'
print(char) # Output: ᄷ
Perl:
my $char = "\x{1137}";
print $char; # Output: ᄷ
PHP:
$char = "\x{1137}";
echo $char; // Output: ᄷ
Ruby:
char = "\u{1137}"
puts char # Output: ᄷ
Rust:
let c = '\u{1137}';
println!("{}", c); // Output: ᄷ
Go:
char := '\u1137'
fmt.Printf("%c\n", char) // Output: ᄷ
CSS:
/* CSS content property */
.element::before {
content: "\001137"; /* 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%B7
MD5:
210f73f068713d6a4465734d9de17142
SHA1:
aa0b8a50e9986b48e1b91081ae745f235e3e951c
Base64:
4YS3