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