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