C:
char c = '\uBC94';
printf("%c\n", c); // Output: 범
JavaScript:
const char = '\uBC94';
console.log(char); // Output: 범
Java:
char c = '\uBC94';
System.out.println(c); // Output: 범
JSON:
{"text": "\uBC94"} // Value: 범
Python:
char = '\uBC94'
print(char) # Output: 범
Perl:
my $char = "\x{BC94}";
print $char; # Output: 범
PHP:
$char = "\x{BC94}";
echo $char; // Output: 범
Ruby:
char = "\u{BC94}"
puts char # Output: 범
Rust:
let c = '\u{BC94}';
println!("{}", c); // Output: 범
Go:
char := '\uBC94'
fmt.Printf("%c\n", char) // Output: 범
CSS:
/* CSS content property */
.element::before {
content: "\00BC94"; /* 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%B2%94
MD5:
14bf8fe2d5605fb77e085715aa224924
SHA1:
0b96db5697691f7aa1420adf6c21ec53fa9d7026
Base64:
67KU