C:
char c = '\u9BB6';
printf("%c\n", c); // Output: 鮶
JavaScript:
const char = '\u9BB6';
console.log(char); // Output: 鮶
Java:
char c = '\u9BB6';
System.out.println(c); // Output: 鮶
JSON:
{"text": "\u9BB6"} // Value: 鮶
Python:
char = '\u9BB6'
print(char) # Output: 鮶
Perl:
my $char = "\x{9BB6}";
print $char; # Output: 鮶
PHP:
$char = "\x{9BB6}";
echo $char; // Output: 鮶
Ruby:
char = "\u{9BB6}"
puts char # Output: 鮶
Rust:
let c = '\u{9BB6}';
println!("{}", c); // Output: 鮶
Go:
char := '\u9BB6'
fmt.Printf("%c\n", char) // Output: 鮶
CSS:
/* CSS content property */
.element::before {
content: "\009BB6"; /* 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%AE%B6
MD5:
0307dee0bd427be674c18d3aa6f98105
SHA1:
21db3c26ee3755f0a6dd812507a08f5da5e1005f
Base64:
6a62