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