C:
char c = '\uB358';
printf("%c\n", c); // Output: 던
JavaScript:
const char = '\uB358';
console.log(char); // Output: 던
Java:
char c = '\uB358';
System.out.println(c); // Output: 던
JSON:
{"text": "\uB358"} // Value: 던
Python:
char = '\uB358'
print(char) # Output: 던
Perl:
my $char = "\x{B358}";
print $char; # Output: 던
PHP:
$char = "\x{B358}";
echo $char; // Output: 던
Ruby:
char = "\u{B358}"
puts char # Output: 던
Rust:
let c = '\u{B358}';
println!("{}", c); // Output: 던
Go:
char := '\uB358'
fmt.Printf("%c\n", char) // Output: 던
CSS:
/* CSS content property */
.element::before {
content: "\00B358"; /* 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=%EB%8D%98
MD5:
54c79f16075c7fa96fb5176a06a1bc09
SHA1:
6e6949203d7c7f3a4356e32550097cf453dd5999
Base64:
642Y