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