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