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