C:
char c = '\uBE23';
printf("%c\n", c); // Output: 븣
JavaScript:
const char = '\uBE23';
console.log(char); // Output: 븣
Java:
char c = '\uBE23';
System.out.println(c); // Output: 븣
JSON:
{"text": "\uBE23"} // Value: 븣
Python:
char = '\uBE23'
print(char) # Output: 븣
Perl:
my $char = "\x{BE23}";
print $char; # Output: 븣
PHP:
$char = "\x{BE23}";
echo $char; // Output: 븣
Ruby:
char = "\u{BE23}"
puts char # Output: 븣
Rust:
let c = '\u{BE23}';
println!("{}", c); // Output: 븣
Go:
char := '\uBE23'
fmt.Printf("%c\n", char) // Output: 븣
CSS:
/* CSS content property */
.element::before {
content: "\00BE23"; /* 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%B8%A3
MD5:
94e45c32073591d91f613064c9ad6ba2
SHA1:
702fe6a3ea4e830a1cb0dc15c54c4bbf7706618b
Base64:
67ij