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