C:
char c = '\uBF30';
printf("%c\n", c); // Output: 뼰
JavaScript:
const char = '\uBF30';
console.log(char); // Output: 뼰
Java:
char c = '\uBF30';
System.out.println(c); // Output: 뼰
JSON:
{"text": "\uBF30"} // Value: 뼰
Python:
char = '\uBF30'
print(char) # Output: 뼰
Perl:
my $char = "\x{BF30}";
print $char; # Output: 뼰
PHP:
$char = "\x{BF30}";
echo $char; // Output: 뼰
Ruby:
char = "\u{BF30}"
puts char # Output: 뼰
Rust:
let c = '\u{BF30}';
println!("{}", c); // Output: 뼰
Go:
char := '\uBF30'
fmt.Printf("%c\n", char) // Output: 뼰
CSS:
/* CSS content property */
.element::before {
content: "\00BF30"; /* 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%BC%B0
MD5:
78366a447e74514e23c7bf8f4991cd3a
SHA1:
476c7c6a32b6250a63f44d61d21d65492092912e
Base64:
67yw