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