C:
char c = '\uB39B';
printf("%c\n", c); // Output: 뎛
JavaScript:
const char = '\uB39B';
console.log(char); // Output: 뎛
Java:
char c = '\uB39B';
System.out.println(c); // Output: 뎛
JSON:
{"text": "\uB39B"} // Value: 뎛
Python:
char = '\uB39B'
print(char) # Output: 뎛
Perl:
my $char = "\x{B39B}";
print $char; # Output: 뎛
PHP:
$char = "\x{B39B}";
echo $char; // Output: 뎛
Ruby:
char = "\u{B39B}"
puts char # Output: 뎛
Rust:
let c = '\u{B39B}';
println!("{}", c); // Output: 뎛
Go:
char := '\uB39B'
fmt.Printf("%c\n", char) // Output: 뎛
CSS:
/* CSS content property */
.element::before {
content: "\00B39B"; /* 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%9B
MD5:
7347ee3cbbb94ea700232020fab749b0
SHA1:
51ec274207262c64c1ea5f8e199be51c11a60ecb
Base64:
646b