C:
char c = '\u6F2A';
printf("%c\n", c); // Output: 漪
JavaScript:
const char = '\u6F2A';
console.log(char); // Output: 漪
Java:
char c = '\u6F2A';
System.out.println(c); // Output: 漪
JSON:
{"text": "\u6F2A"} // Value: 漪
Python:
char = '\u6F2A'
print(char) # Output: 漪
Perl:
my $char = "\x{6F2A}";
print $char; # Output: 漪
PHP:
$char = "\x{6F2A}";
echo $char; // Output: 漪
Ruby:
char = "\u{6F2A}"
puts char # Output: 漪
Rust:
let c = '\u{6F2A}';
println!("{}", c); // Output: 漪
Go:
char := '\u6F2A'
fmt.Printf("%c\n", char) // Output: 漪
CSS:
/* CSS content property */
.element::before {
content: "\006F2A"; /* 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%AA
MD5:
8f38f4c02aa123bc2cc3cf435edc7dd1
SHA1:
9f524538764c22fa4186e7dd2537b4484e7f9823
Base64:
5ryq