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