C:
char c = '\uBE57';
printf("%c\n", c); // Output: 빗
JavaScript:
const char = '\uBE57';
console.log(char); // Output: 빗
Java:
char c = '\uBE57';
System.out.println(c); // Output: 빗
JSON:
{"text": "\uBE57"} // Value: 빗
Python:
char = '\uBE57'
print(char) # Output: 빗
Perl:
my $char = "\x{BE57}";
print $char; # Output: 빗
PHP:
$char = "\x{BE57}";
echo $char; // Output: 빗
Ruby:
char = "\u{BE57}"
puts char # Output: 빗
Rust:
let c = '\u{BE57}';
println!("{}", c); // Output: 빗
Go:
char := '\uBE57'
fmt.Printf("%c\n", char) // Output: 빗
CSS:
/* CSS content property */
.element::before {
content: "\00BE57"; /* 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%B9%97
MD5:
5b6e942ea28e749a9d426a22a66d8d2f
SHA1:
e270ea5bda4517ccfd207649357b9597b96ddaa9
Base64:
67mX