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