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