C:
char c = '\uB1EC';
printf("%c\n", c); // Output: 뇬
JavaScript:
const char = '\uB1EC';
console.log(char); // Output: 뇬
Java:
char c = '\uB1EC';
System.out.println(c); // Output: 뇬
JSON:
{"text": "\uB1EC"} // Value: 뇬
Python:
char = '\uB1EC'
print(char) # Output: 뇬
Perl:
my $char = "\x{B1EC}";
print $char; # Output: 뇬
PHP:
$char = "\x{B1EC}";
echo $char; // Output: 뇬
Ruby:
char = "\u{B1EC}"
puts char # Output: 뇬
Rust:
let c = '\u{B1EC}';
println!("{}", c); // Output: 뇬
Go:
char := '\uB1EC'
fmt.Printf("%c\n", char) // Output: 뇬
CSS:
/* CSS content property */
.element::before {
content: "\00B1EC"; /* 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%87%AC
MD5:
fc901cc2b894f28ce99dd192402c84b9
SHA1:
8bf50bf3b5fee281f7e51466143f85a166a27d1b
Base64:
64es