C:
char c = '\u758B';
printf("%c\n", c); // Output: 疋
JavaScript:
const char = '\u758B';
console.log(char); // Output: 疋
Java:
char c = '\u758B';
System.out.println(c); // Output: 疋
JSON:
{"text": "\u758B"} // Value: 疋
Python:
char = '\u758B'
print(char) # Output: 疋
Perl:
my $char = "\x{758B}";
print $char; # Output: 疋
PHP:
$char = "\x{758B}";
echo $char; // Output: 疋
Ruby:
char = "\u{758B}"
puts char # Output: 疋
Rust:
let c = '\u{758B}';
println!("{}", c); // Output: 疋
Go:
char := '\u758B'
fmt.Printf("%c\n", char) // Output: 疋
CSS:
/* CSS content property */
.element::before {
content: "\00758B"; /* 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=%E7%96%8B
MD5:
7a10d08100a8a2dedde09eb8e0a43ae1
SHA1:
4507fa7a66177fa0eeb754a769ef66bc726676be
Base64:
55aL