C:
char c = '\u9684';
printf("%c\n", c); // Output: 隄
JavaScript:
const char = '\u9684';
console.log(char); // Output: 隄
Java:
char c = '\u9684';
System.out.println(c); // Output: 隄
JSON:
{"text": "\u9684"} // Value: 隄
Python:
char = '\u9684'
print(char) # Output: 隄
Perl:
my $char = "\x{9684}";
print $char; # Output: 隄
PHP:
$char = "\x{9684}";
echo $char; // Output: 隄
Ruby:
char = "\u{9684}"
puts char # Output: 隄
Rust:
let c = '\u{9684}';
println!("{}", c); // Output: 隄
Go:
char := '\u9684'
fmt.Printf("%c\n", char) // Output: 隄
CSS:
/* CSS content property */
.element::before {
content: "\009684"; /* 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=%E9%9A%84
MD5:
677ede752b40207dae6544d11b77dc72
SHA1:
9f31d35ee43b68098edc8370696f3222cd61cedc
Base64:
6ZqE