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