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