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