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