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