C:
char c = '\uD300';
printf("%c\n", c); // Output: 팀
JavaScript:
const char = '\uD300';
console.log(char); // Output: 팀
Java:
char c = '\uD300';
System.out.println(c); // Output: 팀
JSON:
{"text": "\uD300"} // Value: 팀
Python:
char = '\uD300'
print(char) # Output: 팀
Perl:
my $char = "\x{D300}";
print $char; # Output: 팀
PHP:
$char = "\x{D300}";
echo $char; // Output: 팀
Ruby:
char = "\u{D300}"
puts char # Output: 팀
Rust:
let c = '\u{D300}';
println!("{}", c); // Output: 팀
Go:
char := '\uD300'
fmt.Printf("%c\n", char) // Output: 팀
CSS:
/* CSS content property */
.element::before {
content: "\00D300"; /* 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=%ED%8C%80
MD5:
41efb3960a601ebd7cf207a52940daae
SHA1:
905830113458f03222d2113fe8f83fe0e2f8872f
Base64:
7YyA