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