C:
char c = '\uB4E6';
printf("%c\n", c); // Output: 듦
JavaScript:
const char = '\uB4E6';
console.log(char); // Output: 듦
Java:
char c = '\uB4E6';
System.out.println(c); // Output: 듦
JSON:
{"text": "\uB4E6"} // Value: 듦
Python:
char = '\uB4E6'
print(char) # Output: 듦
Perl:
my $char = "\x{B4E6}";
print $char; # Output: 듦
PHP:
$char = "\x{B4E6}";
echo $char; // Output: 듦
Ruby:
char = "\u{B4E6}"
puts char # Output: 듦
Rust:
let c = '\u{B4E6}';
println!("{}", c); // Output: 듦
Go:
char := '\uB4E6'
fmt.Printf("%c\n", char) // Output: 듦
CSS:
/* CSS content property */
.element::before {
content: "\00B4E6"; /* 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%93%A6
MD5:
2ec4ac566587643d2934a031a982b3ff
SHA1:
00289679d4fbb567cf472f072961acf748c87de3
Base64:
65Om