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