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