C:
char c = '\uB6EA';
printf("%c\n", c); // Output: 뛪
JavaScript:
const char = '\uB6EA';
console.log(char); // Output: 뛪
Java:
char c = '\uB6EA';
System.out.println(c); // Output: 뛪
JSON:
{"text": "\uB6EA"} // Value: 뛪
Python:
char = '\uB6EA'
print(char) # Output: 뛪
Perl:
my $char = "\x{B6EA}";
print $char; # Output: 뛪
PHP:
$char = "\x{B6EA}";
echo $char; // Output: 뛪
Ruby:
char = "\u{B6EA}"
puts char # Output: 뛪
Rust:
let c = '\u{B6EA}';
println!("{}", c); // Output: 뛪
Go:
char := '\uB6EA'
fmt.Printf("%c\n", char) // Output: 뛪
CSS:
/* CSS content property */
.element::before {
content: "\00B6EA"; /* 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%AA
MD5:
47203f991c442d1662bbb04744ddab39
SHA1:
8c5bde40d4d23f2a8ea6817a6e935301ebff3ed1
Base64:
65uq