-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathunicode.js
More file actions
39 lines (39 loc) · 1.18 KB
/
unicode.js
File metadata and controls
39 lines (39 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class Unicode {
getInfo() {
return {
id: 'unicode',
name: 'Unicode',
blocks: [
{
opcode: 'GetUnicodeNumber',
blockType: Scratch.BlockType.REPORTER,
text: '[char] 的Unicode编码',
arguments: {
char: {
type: Scratch.ArgumentType.STRING,
defaultValue: 'A'
}
}
},
{
opcode: 'GetUnicodeChar',
blockType: Scratch.BlockType.REPORTER,
text: '[number] 对应的Unicode字符',
arguments: {
number: {
type: Scratch.ArgumentType.NUMBER,
defaultValue: '65'
}
}
}
]
};
}
GetUnicodeNumber(args) {
return args.char.charCodeAt(0);
};
GetUnicodeChar(args) {
return String.fromCharCode(args.number);
}
}
Scratch.extensions.register(new Unicode());