C:
char c = '\u9055';
printf("%c\n", c); // Output: 違
JavaScript:
const char = '\u9055';
console.log(char); // Output: 違
Java:
char c = '\u9055';
System.out.println(c); // Output: 違
JSON:
{"text": "\u9055"} // Value: 違
Python:
char = '\u9055'
print(char) # Output: 違
Perl:
my $char = "\x{9055}";
print $char; # Output: 違
PHP:
$char = "\x{9055}";
echo $char; // Output: 違
Ruby:
char = "\u{9055}"
puts char # Output: 違
Rust:
let c = '\u{9055}';
println!("{}", c); // Output: 違
Go:
char := '\u9055'
fmt.Printf("%c\n", char) // Output: 違
CSS:
/* CSS content property */
.element::before {
content: "\009055"; /* 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=%E9%81%95
MD5:
c436c94a2e8a6c87fc5f536b107dd30d
SHA1:
f23e150ee3be29b0f5b1384e65add95581db8445
Base64:
6YGV