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