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