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