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