C:
char c = '\uB3B9';
printf("%c\n", c); // Output: 뎹
JavaScript:
const char = '\uB3B9';
console.log(char); // Output: 뎹
Java:
char c = '\uB3B9';
System.out.println(c); // Output: 뎹
JSON:
{"text": "\uB3B9"} // Value: 뎹
Python:
char = '\uB3B9'
print(char) # Output: 뎹
Perl:
my $char = "\x{B3B9}";
print $char; # Output: 뎹
PHP:
$char = "\x{B3B9}";
echo $char; // Output: 뎹
Ruby:
char = "\u{B3B9}"
puts char # Output: 뎹
Rust:
let c = '\u{B3B9}';
println!("{}", c); // Output: 뎹
Go:
char := '\uB3B9'
fmt.Printf("%c\n", char) // Output: 뎹
CSS:
/* CSS content property */
.element::before {
content: "\00B3B9"; /* 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%B9
MD5:
11e9d6e2df819fd7963df0544135d4f1
SHA1:
79fb1ec31ac54703867fc53211723f0c27c4f0d1
Base64:
6465