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