C:
char c = '\u6F23';
printf("%c\n", c); // Output: 漣
JavaScript:
const char = '\u6F23';
console.log(char); // Output: 漣
Java:
char c = '\u6F23';
System.out.println(c); // Output: 漣
JSON:
{"text": "\u6F23"} // Value: 漣
Python:
char = '\u6F23'
print(char) # Output: 漣
Perl:
my $char = "\x{6F23}";
print $char; # Output: 漣
PHP:
$char = "\x{6F23}";
echo $char; // Output: 漣
Ruby:
char = "\u{6F23}"
puts char # Output: 漣
Rust:
let c = '\u{6F23}';
println!("{}", c); // Output: 漣
Go:
char := '\u6F23'
fmt.Printf("%c\n", char) // Output: 漣
CSS:
/* CSS content property */
.element::before {
content: "\006F23"; /* 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%BC%A3
MD5:
80c4d01ef9ccc37a47f5e4e380e461d2
SHA1:
81899e166db940bdb67cc266eae59a370e740156
Base64:
5ryj