C:
char c = '\u1345';
printf("%c\n", c); // Output: ፅ
JavaScript:
const char = '\u1345';
console.log(char); // Output: ፅ
Java:
char c = '\u1345';
System.out.println(c); // Output: ፅ
JSON:
{"text": "\u1345"} // Value: ፅ
Python:
char = '\u1345'
print(char) # Output: ፅ
Perl:
my $char = "\x{1345}";
print $char; # Output: ፅ
PHP:
$char = "\x{1345}";
echo $char; // Output: ፅ
Ruby:
char = "\u{1345}"
puts char # Output: ፅ
Rust:
let c = '\u{1345}';
println!("{}", c); // Output: ፅ
Go:
char := '\u1345'
fmt.Printf("%c\n", char) // Output: ፅ
CSS:
/* CSS content property */
.element::before {
content: "\001345"; /* 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%8D%85
MD5:
498cd476888240f1dfc6bbf39e9cbf1f
SHA1:
b5be8f55e95bb7378c8cf956a015a5ca509d52ef
Base64:
4Y2F