C:
char c = '\u8F13';
printf("%c\n", c); // Output: 輓
JavaScript:
const char = '\u8F13';
console.log(char); // Output: 輓
Java:
char c = '\u8F13';
System.out.println(c); // Output: 輓
JSON:
{"text": "\u8F13"} // Value: 輓
Python:
char = '\u8F13'
print(char) # Output: 輓
Perl:
my $char = "\x{8F13}";
print $char; # Output: 輓
PHP:
$char = "\x{8F13}";
echo $char; // Output: 輓
Ruby:
char = "\u{8F13}"
puts char # Output: 輓
Rust:
let c = '\u{8F13}';
println!("{}", c); // Output: 輓
Go:
char := '\u8F13'
fmt.Printf("%c\n", char) // Output: 輓
CSS:
/* CSS content property */
.element::before {
content: "\008F13"; /* 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%BC%93
MD5:
f27dc8dee6d79e2ec8e7eca0f81a2075
SHA1:
4dbc2dc717b964ec651698afc5e83ac7ce567eae
Base64:
6LyT