C:
char c = '\u9395';
printf("%c\n", c); // Output: 鎕
JavaScript:
const char = '\u9395';
console.log(char); // Output: 鎕
Java:
char c = '\u9395';
System.out.println(c); // Output: 鎕
JSON:
{"text": "\u9395"} // Value: 鎕
Python:
char = '\u9395'
print(char) # Output: 鎕
Perl:
my $char = "\x{9395}";
print $char; # Output: 鎕
PHP:
$char = "\x{9395}";
echo $char; // Output: 鎕
Ruby:
char = "\u{9395}"
puts char # Output: 鎕
Rust:
let c = '\u{9395}';
println!("{}", c); // Output: 鎕
Go:
char := '\u9395'
fmt.Printf("%c\n", char) // Output: 鎕
CSS:
/* CSS content property */
.element::before {
content: "\009395"; /* 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%8E%95
MD5:
7a4aae9715480001ff5b5beccd254e5e
SHA1:
b027ed4bf1b3bf6f341e2796e440bc71eb521137
Base64:
6Y6V