C:
char c = '\uBDCD';
printf("%c\n", c); // Output: 뷍
JavaScript:
const char = '\uBDCD';
console.log(char); // Output: 뷍
Java:
char c = '\uBDCD';
System.out.println(c); // Output: 뷍
JSON:
{"text": "\uBDCD"} // Value: 뷍
Python:
char = '\uBDCD'
print(char) # Output: 뷍
Perl:
my $char = "\x{BDCD}";
print $char; # Output: 뷍
PHP:
$char = "\x{BDCD}";
echo $char; // Output: 뷍
Ruby:
char = "\u{BDCD}"
puts char # Output: 뷍
Rust:
let c = '\u{BDCD}';
println!("{}", c); // Output: 뷍
Go:
char := '\uBDCD'
fmt.Printf("%c\n", char) // Output: 뷍
CSS:
/* CSS content property */
.element::before {
content: "\00BDCD"; /* 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%B7%8D
MD5:
6057419292af5f1cb08510ef15aecaf6
SHA1:
789fd11ef150fd7f0aa6329a5dd2fefe16a1619e
Base64:
67eN