C:
char c = '\u92CE';
printf("%c\n", c); // Output: 鋎
JavaScript:
const char = '\u92CE';
console.log(char); // Output: 鋎
Java:
char c = '\u92CE';
System.out.println(c); // Output: 鋎
JSON:
{"text": "\u92CE"} // Value: 鋎
Python:
char = '\u92CE'
print(char) # Output: 鋎
Perl:
my $char = "\x{92CE}";
print $char; # Output: 鋎
PHP:
$char = "\x{92CE}";
echo $char; // Output: 鋎
Ruby:
char = "\u{92CE}"
puts char # Output: 鋎
Rust:
let c = '\u{92CE}';
println!("{}", c); // Output: 鋎
Go:
char := '\u92CE'
fmt.Printf("%c\n", char) // Output: 鋎
CSS:
/* CSS content property */
.element::before {
content: "\0092CE"; /* 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%8B%8E
MD5:
5b0d211757f1f3b27b624e6b9fabe932
SHA1:
c68402bb0b998a1ed114a90c0d2e3f803323f5e8
Base64:
6YuO