C:
char c = '\u8225';
printf("%c\n", c); // Output: 舥
JavaScript:
const char = '\u8225';
console.log(char); // Output: 舥
Java:
char c = '\u8225';
System.out.println(c); // Output: 舥
JSON:
{"text": "\u8225"} // Value: 舥
Python:
char = '\u8225'
print(char) # Output: 舥
Perl:
my $char = "\x{8225}";
print $char; # Output: 舥
PHP:
$char = "\x{8225}";
echo $char; // Output: 舥
Ruby:
char = "\u{8225}"
puts char # Output: 舥
Rust:
let c = '\u{8225}';
println!("{}", c); // Output: 舥
Go:
char := '\u8225'
fmt.Printf("%c\n", char) // Output: 舥
CSS:
/* CSS content property */
.element::before {
content: "\008225"; /* 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%A5
MD5:
6d1c2bbc6be722191eaec490d0a13513
SHA1:
ef527eaaaed51f67275d4a05e255f72bd3d00acd
Base64:
6Iil