C:
char c = '\u8228';
printf("%c\n", c); // Output: 舨
JavaScript:
const char = '\u8228';
console.log(char); // Output: 舨
Java:
char c = '\u8228';
System.out.println(c); // Output: 舨
JSON:
{"text": "\u8228"} // Value: 舨
Python:
char = '\u8228'
print(char) # Output: 舨
Perl:
my $char = "\x{8228}";
print $char; # Output: 舨
PHP:
$char = "\x{8228}";
echo $char; // Output: 舨
Ruby:
char = "\u{8228}"
puts char # Output: 舨
Rust:
let c = '\u{8228}';
println!("{}", c); // Output: 舨
Go:
char := '\u8228'
fmt.Printf("%c\n", char) // Output: 舨
CSS:
/* CSS content property */
.element::before {
content: "\008228"; /* 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=%E8%88%A8
MD5:
d4c75124efef4a5aaa8280e3c28764ba
SHA1:
8c68290f2ab5977eb00bc05f58b845021788a1f9
Base64:
6Iio