C:
char c = '\u6FEF';
printf("%c\n", c); // Output: 濯
JavaScript:
const char = '\u6FEF';
console.log(char); // Output: 濯
Java:
char c = '\u6FEF';
System.out.println(c); // Output: 濯
JSON:
{"text": "\u6FEF"} // Value: 濯
Python:
char = '\u6FEF'
print(char) # Output: 濯
Perl:
my $char = "\x{6FEF}";
print $char; # Output: 濯
PHP:
$char = "\x{6FEF}";
echo $char; // Output: 濯
Ruby:
char = "\u{6FEF}"
puts char # Output: 濯
Rust:
let c = '\u{6FEF}';
println!("{}", c); // Output: 濯
Go:
char := '\u6FEF'
fmt.Printf("%c\n", char) // Output: 濯
CSS:
/* CSS content property */
.element::before {
content: "\006FEF"; /* 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%BF%AF
MD5:
6377f67f9175782180c9b78ee6f2fb6f
SHA1:
ddc6d9325f49f2c267bcde242ec6478b4fac8121
Base64:
5r+v