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