C:
char c = '\u9E23';
printf("%c\n", c); // Output: 鸣
JavaScript:
const char = '\u9E23';
console.log(char); // Output: 鸣
Java:
char c = '\u9E23';
System.out.println(c); // Output: 鸣
JSON:
{"text": "\u9E23"} // Value: 鸣
Python:
char = '\u9E23'
print(char) # Output: 鸣
Perl:
my $char = "\x{9E23}";
print $char; # Output: 鸣
PHP:
$char = "\x{9E23}";
echo $char; // Output: 鸣
Ruby:
char = "\u{9E23}"
puts char # Output: 鸣
Rust:
let c = '\u{9E23}';
println!("{}", c); // Output: 鸣
Go:
char := '\u9E23'
fmt.Printf("%c\n", char) // Output: 鸣
CSS:
/* CSS content property */
.element::before {
content: "\009E23"; /* 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%B8%A3
MD5:
df0d862a3041e9a1c1f9aaf35835f8c5
SHA1:
381441e1b4be01df8c225c7dc8d12171fbe4f155
Base64:
6bij