C:
char c = '\u6298';
printf("%c\n", c); // Output: 折
JavaScript:
const char = '\u6298';
console.log(char); // Output: 折
Java:
char c = '\u6298';
System.out.println(c); // Output: 折
JSON:
{"text": "\u6298"} // Value: 折
Python:
char = '\u6298'
print(char) # Output: 折
Perl:
my $char = "\x{6298}";
print $char; # Output: 折
PHP:
$char = "\x{6298}";
echo $char; // Output: 折
Ruby:
char = "\u{6298}"
puts char # Output: 折
Rust:
let c = '\u{6298}';
println!("{}", c); // Output: 折
Go:
char := '\u6298'
fmt.Printf("%c\n", char) // Output: 折
CSS:
/* CSS content property */
.element::before {
content: "\006298"; /* 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=%E6%8A%98
MD5:
96c015eb6fda2cab86ef5cc3554c6a4f
SHA1:
6d7aac9afc3e488fbad91d5e22f6fc85d86d8af6
Base64:
5oqY