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