C:
char c = '\uBEC2';
printf("%c\n", c); // Output: 뻂
JavaScript:
const char = '\uBEC2';
console.log(char); // Output: 뻂
Java:
char c = '\uBEC2';
System.out.println(c); // Output: 뻂
JSON:
{"text": "\uBEC2"} // Value: 뻂
Python:
char = '\uBEC2'
print(char) # Output: 뻂
Perl:
my $char = "\x{BEC2}";
print $char; # Output: 뻂
PHP:
$char = "\x{BEC2}";
echo $char; // Output: 뻂
Ruby:
char = "\u{BEC2}"
puts char # Output: 뻂
Rust:
let c = '\u{BEC2}';
println!("{}", c); // Output: 뻂
Go:
char := '\uBEC2'
fmt.Printf("%c\n", char) // Output: 뻂
CSS:
/* CSS content property */
.element::before {
content: "\00BEC2"; /* 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%BB%82
MD5:
0063acf1bc95122218126b8ab519e31e
SHA1:
4a2e46cdab6949f08346ea7cd1279d5eec6f9b4d
Base64:
67uC