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