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