C:
char c = '\uD303';
printf("%c\n", c); // Output: 팃
JavaScript:
const char = '\uD303';
console.log(char); // Output: 팃
Java:
char c = '\uD303';
System.out.println(c); // Output: 팃
JSON:
{"text": "\uD303"} // Value: 팃
Python:
char = '\uD303'
print(char) # Output: 팃
Perl:
my $char = "\x{D303}";
print $char; # Output: 팃
PHP:
$char = "\x{D303}";
echo $char; // Output: 팃
Ruby:
char = "\u{D303}"
puts char # Output: 팃
Rust:
let c = '\u{D303}';
println!("{}", c); // Output: 팃
Go:
char := '\uD303'
fmt.Printf("%c\n", char) // Output: 팃
CSS:
/* CSS content property */
.element::before {
content: "\00D303"; /* 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%83
MD5:
2e767b39ba3e29de763f27faa56764ec
SHA1:
8c943f16efb46b30aefdbf038de22f513bd9c193
Base64:
7YyD