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