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