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