C:
char c = '\u5718';
printf("%c\n", c); // Output: 團
JavaScript:
const char = '\u5718';
console.log(char); // Output: 團
Java:
char c = '\u5718';
System.out.println(c); // Output: 團
JSON:
{"text": "\u5718"} // Value: 團
Python:
char = '\u5718'
print(char) # Output: 團
Perl:
my $char = "\x{5718}";
print $char; # Output: 團
PHP:
$char = "\x{5718}";
echo $char; // Output: 團
Ruby:
char = "\u{5718}"
puts char # Output: 團
Rust:
let c = '\u{5718}';
println!("{}", c); // Output: 團
Go:
char := '\u5718'
fmt.Printf("%c\n", char) // Output: 團
CSS:
/* CSS content property */
.element::before {
content: "\005718"; /* 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=%E5%9C%98
MD5:
bf203ce85ad315841e2d717309be1246
SHA1:
80ef180d08b8d5d6d97b93a06484e1312f810e0f
Base64:
5ZyY