C:
char c = '\u941B';
printf("%c\n", c); // Output: 鐛
JavaScript:
const char = '\u941B';
console.log(char); // Output: 鐛
Java:
char c = '\u941B';
System.out.println(c); // Output: 鐛
JSON:
{"text": "\u941B"} // Value: 鐛
Python:
char = '\u941B'
print(char) # Output: 鐛
Perl:
my $char = "\x{941B}";
print $char; # Output: 鐛
PHP:
$char = "\x{941B}";
echo $char; // Output: 鐛
Ruby:
char = "\u{941B}"
puts char # Output: 鐛
Rust:
let c = '\u{941B}';
println!("{}", c); // Output: 鐛
Go:
char := '\u941B'
fmt.Printf("%c\n", char) // Output: 鐛
CSS:
/* CSS content property */
.element::before {
content: "\00941B"; /* 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%90%9B
MD5:
f648d96d0d7eb600d252500bfcca16a8
SHA1:
b126f1c77ade68d16e9d5132c5081a8248d19381
Base64:
6ZCb