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