C:
char c = '\uB3A6';
printf("%c\n", c); // Output: 뎦
JavaScript:
const char = '\uB3A6';
console.log(char); // Output: 뎦
Java:
char c = '\uB3A6';
System.out.println(c); // Output: 뎦
JSON:
{"text": "\uB3A6"} // Value: 뎦
Python:
char = '\uB3A6'
print(char) # Output: 뎦
Perl:
my $char = "\x{B3A6}";
print $char; # Output: 뎦
PHP:
$char = "\x{B3A6}";
echo $char; // Output: 뎦
Ruby:
char = "\u{B3A6}"
puts char # Output: 뎦
Rust:
let c = '\u{B3A6}';
println!("{}", c); // Output: 뎦
Go:
char := '\uB3A6'
fmt.Printf("%c\n", char) // Output: 뎦
CSS:
/* CSS content property */
.element::before {
content: "\00B3A6"; /* 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%A6
MD5:
5cb30176c2e3ddb470d0bc437a1aad75
SHA1:
027b59900214839a7f25d884dd6a765ecd79bcc9
Base64:
646m