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