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