C:
char c = '\u75BA';
printf("%c\n", c); // Output: 疺
JavaScript:
const char = '\u75BA';
console.log(char); // Output: 疺
Java:
char c = '\u75BA';
System.out.println(c); // Output: 疺
JSON:
{"text": "\u75BA"} // Value: 疺
Python:
char = '\u75BA'
print(char) # Output: 疺
Perl:
my $char = "\x{75BA}";
print $char; # Output: 疺
PHP:
$char = "\x{75BA}";
echo $char; // Output: 疺
Ruby:
char = "\u{75BA}"
puts char # Output: 疺
Rust:
let c = '\u{75BA}';
println!("{}", c); // Output: 疺
Go:
char := '\u75BA'
fmt.Printf("%c\n", char) // Output: 疺
CSS:
/* CSS content property */
.element::before {
content: "\0075BA"; /* 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%BA
MD5:
d165e7761654166b706954436ef53498
SHA1:
f24fef96eb7768d9f77258e4b3e8765256b473dc
Base64:
55a6