C:
char c = '\u8361';
printf("%c\n", c); // Output: 荡
JavaScript:
const char = '\u8361';
console.log(char); // Output: 荡
Java:
char c = '\u8361';
System.out.println(c); // Output: 荡
JSON:
{"text": "\u8361"} // Value: 荡
Python:
char = '\u8361'
print(char) # Output: 荡
Perl:
my $char = "\x{8361}";
print $char; # Output: 荡
PHP:
$char = "\x{8361}";
echo $char; // Output: 荡
Ruby:
char = "\u{8361}"
puts char # Output: 荡
Rust:
let c = '\u{8361}';
println!("{}", c); // Output: 荡
Go:
char := '\u8361'
fmt.Printf("%c\n", char) // Output: 荡
CSS:
/* CSS content property */
.element::before {
content: "\008361"; /* 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%8D%A1
MD5:
d50e94b19dd7a435ac8e6a36503855cd
SHA1:
ab26cb400611b1fc28f9a76bb4c9981fcaaf57f1
Base64:
6I2h