C:
char c = '\u9308';
printf("%c\n", c); // Output: 錈
JavaScript:
const char = '\u9308';
console.log(char); // Output: 錈
Java:
char c = '\u9308';
System.out.println(c); // Output: 錈
JSON:
{"text": "\u9308"} // Value: 錈
Python:
char = '\u9308'
print(char) # Output: 錈
Perl:
my $char = "\x{9308}";
print $char; # Output: 錈
PHP:
$char = "\x{9308}";
echo $char; // Output: 錈
Ruby:
char = "\u{9308}"
puts char # Output: 錈
Rust:
let c = '\u{9308}';
println!("{}", c); // Output: 錈
Go:
char := '\u9308'
fmt.Printf("%c\n", char) // Output: 錈
CSS:
/* CSS content property */
.element::before {
content: "\009308"; /* 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%88
MD5:
6fe07df2439ed38ed0ee81d86ee8973e
SHA1:
0717315ae2741ce934772a9f77de5241edf30e66
Base64:
6YyI