C:
char c = '\u92D0';
printf("%c\n", c); // Output: 鋐
JavaScript:
const char = '\u92D0';
console.log(char); // Output: 鋐
Java:
char c = '\u92D0';
System.out.println(c); // Output: 鋐
JSON:
{"text": "\u92D0"} // Value: 鋐
Python:
char = '\u92D0'
print(char) # Output: 鋐
Perl:
my $char = "\x{92D0}";
print $char; # Output: 鋐
PHP:
$char = "\x{92D0}";
echo $char; // Output: 鋐
Ruby:
char = "\u{92D0}"
puts char # Output: 鋐
Rust:
let c = '\u{92D0}';
println!("{}", c); // Output: 鋐
Go:
char := '\u92D0'
fmt.Printf("%c\n", char) // Output: 鋐
CSS:
/* CSS content property */
.element::before {
content: "\0092D0"; /* 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%90
MD5:
f87446693ade47dcec13facd9e8ce4e1
SHA1:
414c0445fbf1bf224990ccab958cd40100b0835e
Base64:
6YuQ