C:
char c = '\u1125';
printf("%c\n", c); // Output: ᄥ
JavaScript:
const char = '\u1125';
console.log(char); // Output: ᄥ
Java:
char c = '\u1125';
System.out.println(c); // Output: ᄥ
JSON:
{"text": "\u1125"} // Value: ᄥ
Python:
char = '\u1125'
print(char) # Output: ᄥ
Perl:
my $char = "\x{1125}";
print $char; # Output: ᄥ
PHP:
$char = "\x{1125}";
echo $char; // Output: ᄥ
Ruby:
char = "\u{1125}"
puts char # Output: ᄥ
Rust:
let c = '\u{1125}';
println!("{}", c); // Output: ᄥ
Go:
char := '\u1125'
fmt.Printf("%c\n", char) // Output: ᄥ
CSS:
/* CSS content property */
.element::before {
content: "\001125"; /* 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%A5
MD5:
97fb7559d865654acc93df606d08546f
SHA1:
88a9150f93fc358ee38fbd01fbf11f00adeeb45f
Base64:
4YSl