C:
char c = '\uBFB6';
printf("%c\n", c); // Output: 뾶
JavaScript:
const char = '\uBFB6';
console.log(char); // Output: 뾶
Java:
char c = '\uBFB6';
System.out.println(c); // Output: 뾶
JSON:
{"text": "\uBFB6"} // Value: 뾶
Python:
char = '\uBFB6'
print(char) # Output: 뾶
Perl:
my $char = "\x{BFB6}";
print $char; # Output: 뾶
PHP:
$char = "\x{BFB6}";
echo $char; // Output: 뾶
Ruby:
char = "\u{BFB6}"
puts char # Output: 뾶
Rust:
let c = '\u{BFB6}';
println!("{}", c); // Output: 뾶
Go:
char := '\uBFB6'
fmt.Printf("%c\n", char) // Output: 뾶
CSS:
/* CSS content property */
.element::before {
content: "\00BFB6"; /* 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%BE%B6
MD5:
9a6513501142b245c8c259cc464a56a6
SHA1:
16db53ee084ad892c516f524e478cce1e0408209
Base64:
6762