C:
char c = '\uB39A';
printf("%c\n", c); // Output: 뎚
JavaScript:
const char = '\uB39A';
console.log(char); // Output: 뎚
Java:
char c = '\uB39A';
System.out.println(c); // Output: 뎚
JSON:
{"text": "\uB39A"} // Value: 뎚
Python:
char = '\uB39A'
print(char) # Output: 뎚
Perl:
my $char = "\x{B39A}";
print $char; # Output: 뎚
PHP:
$char = "\x{B39A}";
echo $char; // Output: 뎚
Ruby:
char = "\u{B39A}"
puts char # Output: 뎚
Rust:
let c = '\u{B39A}';
println!("{}", c); // Output: 뎚
Go:
char := '\uB39A'
fmt.Printf("%c\n", char) // Output: 뎚
CSS:
/* CSS content property */
.element::before {
content: "\00B39A"; /* 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%9A
MD5:
64e91a40d2dae68a570168e07491a710
SHA1:
1db1b33c3c641de81aca1aa8a18ed1ce6e8bbad5
Base64:
646a