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