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