C:
char c = '\uB383';
printf("%c\n", c); // Output: 뎃
JavaScript:
const char = '\uB383';
console.log(char); // Output: 뎃
Java:
char c = '\uB383';
System.out.println(c); // Output: 뎃
JSON:
{"text": "\uB383"} // Value: 뎃
Python:
char = '\uB383'
print(char) # Output: 뎃
Perl:
my $char = "\x{B383}";
print $char; # Output: 뎃
PHP:
$char = "\x{B383}";
echo $char; // Output: 뎃
Ruby:
char = "\u{B383}"
puts char # Output: 뎃
Rust:
let c = '\u{B383}';
println!("{}", c); // Output: 뎃
Go:
char := '\uB383'
fmt.Printf("%c\n", char) // Output: 뎃
CSS:
/* CSS content property */
.element::before {
content: "\00B383"; /* 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%8E%83
MD5:
3bd5605305e5842a1feace86967726c5
SHA1:
fc55564a6076cd6197db04b0da81cf4f6d307379
Base64:
646D