C:
char c = '\uBFB0';
printf("%c\n", c); // Output: 뾰
JavaScript:
const char = '\uBFB0';
console.log(char); // Output: 뾰
Java:
char c = '\uBFB0';
System.out.println(c); // Output: 뾰
JSON:
{"text": "\uBFB0"} // Value: 뾰
Python:
char = '\uBFB0'
print(char) # Output: 뾰
Perl:
my $char = "\x{BFB0}";
print $char; # Output: 뾰
PHP:
$char = "\x{BFB0}";
echo $char; // Output: 뾰
Ruby:
char = "\u{BFB0}"
puts char # Output: 뾰
Rust:
let c = '\u{BFB0}';
println!("{}", c); // Output: 뾰
Go:
char := '\uBFB0'
fmt.Printf("%c\n", char) // Output: 뾰
CSS:
/* CSS content property */
.element::before {
content: "\00BFB0"; /* 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%B0
MD5:
90a2b689a632f1d3825b7108581215e7
SHA1:
f965fcbad161d3549c9cc0f31ffb5a8d13ce5153
Base64:
676w