C:
char c = '\uA58B';
printf("%c\n", c); // Output: ꖋ
JavaScript:
const char = '\uA58B';
console.log(char); // Output: ꖋ
Java:
char c = '\uA58B';
System.out.println(c); // Output: ꖋ
JSON:
{"text": "\uA58B"} // Value: ꖋ
Python:
char = '\uA58B'
print(char) # Output: ꖋ
Perl:
my $char = "\x{A58B}";
print $char; # Output: ꖋ
PHP:
$char = "\x{A58B}";
echo $char; // Output: ꖋ
Ruby:
char = "\u{A58B}"
puts char # Output: ꖋ
Rust:
let c = '\u{A58B}';
println!("{}", c); // Output: ꖋ
Go:
char := '\uA58B'
fmt.Printf("%c\n", char) // Output: ꖋ
CSS:
/* CSS content property */
.element::before {
content: "\00A58B"; /* 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=%EA%96%8B
MD5:
c27d4fb977ab775ded330f5ac82d2560
SHA1:
f7944fecdbb6ec6b836c6b38b85f21f3e069edf3
Base64:
6paL