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