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