C:
char c = '\uB6ED';
printf("%c\n", c); // Output: 뛭
JavaScript:
const char = '\uB6ED';
console.log(char); // Output: 뛭
Java:
char c = '\uB6ED';
System.out.println(c); // Output: 뛭
JSON:
{"text": "\uB6ED"} // Value: 뛭
Python:
char = '\uB6ED'
print(char) # Output: 뛭
Perl:
my $char = "\x{B6ED}";
print $char; # Output: 뛭
PHP:
$char = "\x{B6ED}";
echo $char; // Output: 뛭
Ruby:
char = "\u{B6ED}"
puts char # Output: 뛭
Rust:
let c = '\u{B6ED}';
println!("{}", c); // Output: 뛭
Go:
char := '\uB6ED'
fmt.Printf("%c\n", char) // Output: 뛭
CSS:
/* CSS content property */
.element::before {
content: "\00B6ED"; /* 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%9B%AD
MD5:
c2f28656c761141db30f238a15a87eab
SHA1:
f5ff652405d83d4016999696f7954df748535cf1
Base64:
65ut