C:
char c = '\u9BCA';
printf("%c\n", c); // Output: 鯊
JavaScript:
const char = '\u9BCA';
console.log(char); // Output: 鯊
Java:
char c = '\u9BCA';
System.out.println(c); // Output: 鯊
JSON:
{"text": "\u9BCA"} // Value: 鯊
Python:
char = '\u9BCA'
print(char) # Output: 鯊
Perl:
my $char = "\x{9BCA}";
print $char; # Output: 鯊
PHP:
$char = "\x{9BCA}";
echo $char; // Output: 鯊
Ruby:
char = "\u{9BCA}"
puts char # Output: 鯊
Rust:
let c = '\u{9BCA}';
println!("{}", c); // Output: 鯊
Go:
char := '\u9BCA'
fmt.Printf("%c\n", char) // Output: 鯊
CSS:
/* CSS content property */
.element::before {
content: "\009BCA"; /* 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%AF%8A
MD5:
57826a7f37670e6dfccca82253f5e2bb
SHA1:
490a8588d9722aafadb60b32cba8e4fdb44eca09
Base64:
6a+K