C:
char c = '\u8222';
printf("%c\n", c); // Output: 舢
JavaScript:
const char = '\u8222';
console.log(char); // Output: 舢
Java:
char c = '\u8222';
System.out.println(c); // Output: 舢
JSON:
{"text": "\u8222"} // Value: 舢
Python:
char = '\u8222'
print(char) # Output: 舢
Perl:
my $char = "\x{8222}";
print $char; # Output: 舢
PHP:
$char = "\x{8222}";
echo $char; // Output: 舢
Ruby:
char = "\u{8222}"
puts char # Output: 舢
Rust:
let c = '\u{8222}';
println!("{}", c); // Output: 舢
Go:
char := '\u8222'
fmt.Printf("%c\n", char) // Output: 舢
CSS:
/* CSS content property */
.element::before {
content: "\008222"; /* 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%A2
MD5:
bc4d388425e98af2972b60e839528f8d
SHA1:
781c21fcf602e99d10174470659ccb2b8d0b17c2
Base64:
6Iii