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