C:
char c = '\u9F17';
printf("%c\n", c); // Output: 鼗
JavaScript:
const char = '\u9F17';
console.log(char); // Output: 鼗
Java:
char c = '\u9F17';
System.out.println(c); // Output: 鼗
JSON:
{"text": "\u9F17"} // Value: 鼗
Python:
char = '\u9F17'
print(char) # Output: 鼗
Perl:
my $char = "\x{9F17}";
print $char; # Output: 鼗
PHP:
$char = "\x{9F17}";
echo $char; // Output: 鼗
Ruby:
char = "\u{9F17}"
puts char # Output: 鼗
Rust:
let c = '\u{9F17}';
println!("{}", c); // Output: 鼗
Go:
char := '\u9F17'
fmt.Printf("%c\n", char) // Output: 鼗
CSS:
/* CSS content property */
.element::before {
content: "\009F17"; /* 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%BC%97
MD5:
d217385da5ee272279061cb1e3097f1f
SHA1:
32f98bf2c95ded835017ffe3fc7b8c30d8b0ada2
Base64:
6byX