C:
char c = '\uB377';
printf("%c\n", c); // Output: 덷
JavaScript:
const char = '\uB377';
console.log(char); // Output: 덷
Java:
char c = '\uB377';
System.out.println(c); // Output: 덷
JSON:
{"text": "\uB377"} // Value: 덷
Python:
char = '\uB377'
print(char) # Output: 덷
Perl:
my $char = "\x{B377}";
print $char; # Output: 덷
PHP:
$char = "\x{B377}";
echo $char; // Output: 덷
Ruby:
char = "\u{B377}"
puts char # Output: 덷
Rust:
let c = '\u{B377}';
println!("{}", c); // Output: 덷
Go:
char := '\uB377'
fmt.Printf("%c\n", char) // Output: 덷
CSS:
/* CSS content property */
.element::before {
content: "\00B377"; /* 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%B7
MD5:
0ab046108c119134db0d82729d9ba0f0
SHA1:
b220ccd995c89e405e2dec1c4c7f63e40801fb2d
Base64:
6423