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