C:
char c = '\uB354';
printf("%c\n", c); // Output: 더
JavaScript:
const char = '\uB354';
console.log(char); // Output: 더
Java:
char c = '\uB354';
System.out.println(c); // Output: 더
JSON:
{"text": "\uB354"} // Value: 더
Python:
char = '\uB354'
print(char) # Output: 더
Perl:
my $char = "\x{B354}";
print $char; # Output: 더
PHP:
$char = "\x{B354}";
echo $char; // Output: 더
Ruby:
char = "\u{B354}"
puts char # Output: 더
Rust:
let c = '\u{B354}';
println!("{}", c); // Output: 더
Go:
char := '\uB354'
fmt.Printf("%c\n", char) // Output: 더
CSS:
/* CSS content property */
.element::before {
content: "\00B354"; /* 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%94
MD5:
690a71516069cd34c2737e598d48980b
SHA1:
a20f2464c8f1e1d1897eee6a644b553e50257fbe
Base64:
642U