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