C:
char c = '\u9BEC';
printf("%c\n", c); // Output: 鯬
JavaScript:
const char = '\u9BEC';
console.log(char); // Output: 鯬
Java:
char c = '\u9BEC';
System.out.println(c); // Output: 鯬
JSON:
{"text": "\u9BEC"} // Value: 鯬
Python:
char = '\u9BEC'
print(char) # Output: 鯬
Perl:
my $char = "\x{9BEC}";
print $char; # Output: 鯬
PHP:
$char = "\x{9BEC}";
echo $char; // Output: 鯬
Ruby:
char = "\u{9BEC}"
puts char # Output: 鯬
Rust:
let c = '\u{9BEC}';
println!("{}", c); // Output: 鯬
Go:
char := '\u9BEC'
fmt.Printf("%c\n", char) // Output: 鯬
CSS:
/* CSS content property */
.element::before {
content: "\009BEC"; /* 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%AC
MD5:
b08e3a48a58428b306f90dd105b1fcec
SHA1:
d6761ef9031b89cf3c38063cbbb46fd05c853729
Base64:
6a+s