C:
char c = '\uBD95';
printf("%c\n", c); // Output: 붕
JavaScript:
const char = '\uBD95';
console.log(char); // Output: 붕
Java:
char c = '\uBD95';
System.out.println(c); // Output: 붕
JSON:
{"text": "\uBD95"} // Value: 붕
Python:
char = '\uBD95'
print(char) # Output: 붕
Perl:
my $char = "\x{BD95}";
print $char; # Output: 붕
PHP:
$char = "\x{BD95}";
echo $char; // Output: 붕
Ruby:
char = "\u{BD95}"
puts char # Output: 붕
Rust:
let c = '\u{BD95}';
println!("{}", c); // Output: 붕
Go:
char := '\uBD95'
fmt.Printf("%c\n", char) // Output: 붕
CSS:
/* CSS content property */
.element::before {
content: "\00BD95"; /* 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%B6%95
MD5:
8db8cfe7e8d5a5bee40d5434a9ef4baf
SHA1:
d64bb823a8e49bf718b7f4ad2010688c51af0104
Base64:
67aV